1 package test.nested; 2 3 import org.testng.Assert; 4 import org.testng.annotations.Test; 5 6 import test.nested.foo.AccountTypeEnum; 7 8 @Test(groups = { "unittest" }, enabled = true ) 9 public class GarfTest { 10 11 @Test() testGarf()12 public void testGarf() { 13 AccountTypeEnum foo = AccountTypeEnum.ClearingMember; 14 Assert.assertEquals(foo,AccountTypeEnum.ClearingMember); 15 } 16 17 } 18