RecurringJob execute

HI,

we have job with date parameter. We set it to occur every day, with date parameter. Job is:
DateTime myDate = DateTime.Now.Date
RecurringJob.AddOrUpdate(
“ReportJob”,
x => x.ReportForDate(myDate),
“01 01 * * *”,
TimeZoneInfo.FindSystemTimeZoneById(“Central Europe Standard Time”));

I would like to know how to execute this job with date in past., for the case when something went wrong during weekend, and we want to simulate that day.
Thanks in advance