예제 #1
0
 // throws InterruptedException
 public virtual void testEventTiming()
 {
     Logger l = new Logger();
     l.log(new Event(null,null));
     Thread.Sleep(100);
     l.log(new Event(null,null));
     Assertion.AssertTrue(l.getElapsedTime() >= 0);
 }