Home
last modified time | relevance | path

Searched refs:initGroups (Results 1 – 3 of 3) sorted by relevance

/external/testng/src/main/java/org/testng/internal/
DConfigurationMethod.java349 initGroups(IBeforeSuite.class); in init()
352 initGroups(IAfterSuite.class); in init()
355 initGroups(IBeforeTest.class); in init()
358 initGroups(IAfterTest.class); in init()
361 initGroups(IBeforeGroups.class); in init()
364 initGroups(IAfterGroups.class); in init()
367 initGroups(IBeforeClass.class); in init()
370 initGroups(IAfterClass.class); in init()
373 initGroups(IBeforeMethod.class); in init()
376 initGroups(IAfterMethod.class); in init()
[all …]
DTestNGMethod.java122 initGroups(ITestAnnotation.class); in init()
DBaseTestMethod.java433 protected void initGroups(Class<? extends ITestOrConfiguration> annotationClass) { in initGroups() method in BaseTestMethod