protected CoreTimer_Tests()
 {
     timerComponent = new Mock<ITimerComponent>();
     timer = new CoreTimer(timerComponent.Object);
     monitor = new TomatoEventMonitor(timer);
 }
 protected CoreTimer_Test()
 {
     timerComponent = MockRepository.GenerateMock<ITimerComponent>();
     timer = new CoreTimer(timerComponent);
     monitor = new TomatoEventMonitor(timer);
 }