You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class UnittestingUnitTest2 extends AbstractUnitTest
{
@Before
public void setup() throws InterruptedException {
Thread.sleep(5);
}
@After
public void tearDown() throws InterruptedException {
Thread.sleep(5);
}
@Test
public void evenMoreUnitTests() throws InterruptedException {
this.startTimeMeasure();
this.reportStep("By inheriting from AbstractUnitTest some utility methods are provided and time can be tracted in a more reliable way (without counting setup and teardown)");