I'm using quartz.NET inside a scheduler project (class library) on my application, this is because i want the other projects to be agnostic of the actual implementation. In the future, if i want to change quartz for Castle Scheduler or Windows Scheduler or wathever... i will have the flexibility to change it.
I need to unit test weekly triggers on my Quartz.NET project, I started researching and found out what at the moment seemed to be a cool solution MOLES this extension basically allows me to change the DateTime.Now and go TO THE FUTURE!!
In this case, one week from now, when the trigger is scheduled to fire, but after waiting a little time found with sadness that my triggers were not being activated, even when changing the time and Thread.Sleeping a couple of minutes...
The reason that I want to go to the future is because within the application I'm using different methods/triggers for each kind of request E.G. Weekly, Weekly with recurrence, Monthly, Yearly
Has anyone else Unit Tested this kind of scenario?
Is there something that i'm passing by?
Is it possible with MOLES?