Home
last modified time | relevance | path

Searched refs:getDependsOnGroups (Results 1 – 8 of 8) sorted by relevance

/external/testng/src/test/java/test/mannotation/
DMAnnotation2SampleTest.java49 test1.getDependsOnGroups()); in verifyTestDependsOnGroupsInheritance()
56 test1.getDependsOnGroups()); in verifyTestDependsOnGroupsInheritance()
DMAnnotationSampleTest.java39 …Assert.assertEqualsNoOrder(test1.getDependsOnGroups(), new String[] { "dg1", "dg2" }, "depends on… in verifyTestClassLevel()
72 …Assert.assertEqualsNoOrder(test1.getDependsOnGroups(), new String[] { "dg1", "dg2", "dg3", "dg4" }… in verifyTestMethodLevel()
96 …Assert.assertEqualsNoOrder(test1.getDependsOnGroups(), new String[] { "dg1", "dg2", "dg5", "dg6" }… in verifyTestConstructorLevel()
176 …Assert.assertEqualsNoOrder(configuration.getDependsOnGroups(), new String[] { "odg1", "odg2" }, "d… in verifyConfigurationOthers()
/external/testng/src/main/java/org/testng/internal/annotations/
DIBaseBeforeAfter.java29 public String[] getDependsOnGroups(); in getDependsOnGroups() method
DTestOrConfiguration.java54 public String[] getDependsOnGroups() { in getDependsOnGroups() method in TestOrConfiguration
DAnnotationHelper.java157 result.setDependsOnGroups(bs.getDependsOnGroups()); in finishInitialize()
/external/testng/src/main/java/org/testng/annotations/
DITestOrConfiguration.java31 public String[] getDependsOnGroups(); in getDependsOnGroups() method
/external/testng/src/main/java/org/testng/internal/
DUtils.java286 for (String group : tc.getDependsOnGroups()) { in dependentGroupsForThisMethodForTest()
294 String[] groups = tm.getDependsOnGroups(); in dependentGroupsForThisMethodForTest()
362 result = tm.getDependsOnGroups(); in dependentGroupsForThisMethodForConfiguration()
DBaseTestMethod.java461 getStringArray(null != annotation ? annotation.getDependsOnGroups() : null, in initGroups()
462 null != classAnnotation ? classAnnotation.getDependsOnGroups() : null), in initGroups()