blob: 17ea7eda6f8e686b82c5235299a69fc4cd482322 [file] [log] [blame]
package test.nested;
import org.testng.Assert;
import org.testng.annotations.Test;
import test.nested.foo.AccountTypeEnum;
@Test(groups = { "unittest" }, enabled = true )
public class GarfTest {
@Test()
public void testGarf() {
AccountTypeEnum foo = AccountTypeEnum.ClearingMember;
Assert.assertEquals(foo,AccountTypeEnum.ClearingMember);
}
}