Searched refs:AfterGroups (Results 1 – 15 of 15) sorted by relevance
3 import org.testng.annotations.AfterGroups;16 @AfterGroups(groups={"a"})
5 import org.testng.annotations.AfterGroups;18 @AfterGroups(value= "a", groups= "a")
3 import org.testng.annotations.AfterGroups;25 @AfterGroups(groups={"twice"}, value={"twice"})
4 import org.testng.annotations.AfterGroups;30 @AfterGroups("cg4-1")
4 import org.testng.annotations.AfterGroups;30 @AfterGroups({"A"})
3 import org.testng.annotations.AfterGroups;26 @AfterGroups(groups={"twice"}, value={"twice"})
4 import org.testng.annotations.AfterGroups;38 @AfterGroups("cg6-1")
3 import org.testng.annotations.AfterGroups;31 @AfterGroups(groups={"twice"}, value={"twice"})
4 import org.testng.annotations.AfterGroups;43 @AfterGroups({ "cg5-1", "cg5-2"})
4 import org.testng.annotations.AfterGroups;27 @AfterGroups("1")
4 import org.testng.annotations.AfterGroups;79 @AfterGroups
8 public @interface AfterGroups { annotation
14 import org.testng.annotations.AfterGroups;77 m_annotationMap.put(IAfterGroups.class, AfterGroups.class); in JDK15AnnotationFinder()
12 import org.testng.annotations.AfterGroups;178 AfterGroups bs = (AfterGroups) a; in maybeCreateNewConfigurationTag()
742 Added: @BeforeGroups/@AfterGroups can live in classes without @Test methods750 Fixed: @Before/@AfterGroups invocation order766 Added: for @BeforeGroups and @AfterGroups specifying the groups() attribute will auto-include the m…802 Fixed: AfterGroups were invoked out of order with invocationCount and DataProviders