Home
last modified time | relevance | path

Searched refs:BeforeGroups (Results 1 – 20 of 20) sorted by relevance

/external/testng/src/test/java/test/groupinvocation/
DFailingBeforeGroupMethod.java3 import org.testng.annotations.BeforeGroups;
10 @BeforeGroups(groups={"A"})
DGroupConfiguration.java4 import org.testng.annotations.BeforeGroups;
11 @BeforeGroups(groups={"a"})
/external/testng/src/test/java/test/tmp/
DBeforeGroupTest.java4 import org.testng.annotations.BeforeGroups;
10 @BeforeGroups(groups = { "NewUser" }, value = { "NewUser" })
/external/testng/src/test/java/test/configuration/
DMultipleBeforeGroupTest.java4 import org.testng.annotations.BeforeGroups;
11 @BeforeGroups( "foo" )
DBase.java3 import org.testng.annotations.BeforeGroups;
16 @BeforeGroups(groups = "foo")
DBase3.java4 import org.testng.annotations.BeforeGroups;
17 @BeforeGroups("cg34-1")
DConfigurationGroupInvocationCountSampleTest.java4 import org.testng.annotations.BeforeGroups;
13 @BeforeGroups(groups={"twice"}, value={"twice"})
DConfigurationGroups7SampleTest.java5 import org.testng.annotations.BeforeGroups;
15 @BeforeGroups({"A"})
DConfigurationGroupDataProviderSampleTest.java4 import org.testng.annotations.BeforeGroups;
14 @BeforeGroups(groups={"twice"}, value={"twice"})
DConfigurationGroups1SampleTest.java4 import org.testng.annotations.BeforeGroups;
20 @BeforeGroups("cg1-1")
DConfigurationGroupBothSampleTest.java4 import org.testng.annotations.BeforeGroups;
19 @BeforeGroups(groups={"twice"}, value={"twice"})
DConfigurationGroups3SampleTest.java4 import org.testng.annotations.BeforeGroups;
21 @BeforeGroups("cg34-1")
DConfigurationGroups2SampleTest.java4 import org.testng.annotations.BeforeGroups;
22 @BeforeGroups("cg2-1")
/external/testng/src/test/java/test/regression/groupsordering/
DBase.java6 import org.testng.annotations.BeforeGroups;
12 @BeforeGroups(value= "a", groups= "a")
/external/testng/src/test/java/test/v6/
DA.java8 import org.testng.annotations.BeforeGroups;
24 @BeforeGroups("1")
/external/testng/src/test/java/test/mannotation/
DMTest1.java9 import org.testng.annotations.BeforeGroups;
72 @BeforeGroups
/external/testng/src/main/java/org/testng/annotations/
DBeforeGroups.java8 public @interface BeforeGroups { annotation
/external/testng/src/main/java/org/testng/internal/annotations/
DJDK15AnnotationFinder.java19 import org.testng.annotations.BeforeGroups;
76 m_annotationMap.put(IBeforeGroups.class, BeforeGroups.class); in JDK15AnnotationFinder()
DJDK15TagFactory.java17 import org.testng.annotations.BeforeGroups;
162 BeforeGroups bs = (BeforeGroups) a; in maybeCreateNewConfigurationTag()
/external/testng/
DCHANGES.txt742 Added: @BeforeGroups/@AfterGroups can live in classes without @Test methods
766 Added: for @BeforeGroups and @AfterGroups specifying the groups() attribute will auto-include the m…