01: package test.nested;
02:
03: import org.testng.Assert;
04: import org.testng.annotations.Test;
05:
06: import test.nested.foo.AccountTypeEnum;
07:
08: @Test(groups={"unittest"},enabled=true)
09: public class GarfTest {
10:
11: @Test()
12: public void testGarf() {
13: AccountTypeEnum foo = AccountTypeEnum.ClearingMember;
14: Assert.assertEquals(foo, AccountTypeEnum.ClearingMember);
15: }
16:
17: }
|