01: package test.invocationcount;
02:
03: import org.testng.Assert;
04: import org.testng.annotations.Test;
05:
06: public class InvocationCountOnlyFirstTimeVerifyTest {
07: @Test(dependsOnGroups="first")
08: public void verify() {
09: Assert.assertEquals(
10: InvocationCountOnlyFirstTimeTest.m_beforeCount, 0);
11: Assert.assertEquals(
12: InvocationCountOnlyFirstTimeTest.m_afterCount, 9);
13: }
14: }
|