/external/testng/src/test/java/test/regression/groupsordering/ |
A.java | 8 @Test(groups= "a")
|
B.java | 8 @Test(groups= "a")
|
/external/testng/src/test/java/test/sample/ |
Sample2.java | 14 @Test(groups = "g1")
|
Scope.java | 12 @Test(groups = { "outer-group" }, parameters = { "parameter" }) 18 @Test(groups = { "inner-group" }, parameters = { "parameter" })
|
InvocationCountTest.java | 20 @AfterSuite(groups = {"invocationOnly"}) 27 @Test(groups = { "invocationOnly"}, invocationCount = 10 ) 39 @Test(groups = { "successPercentageThatSucceedsOnly" }, 56 @Test(groups = { "successPercentageThatFailsOnly" }, 65 @AfterClass(groups = { "invocationOnly"})
|
/external/testng/src/main/java/org/testng/annotations/ |
ITestOrConfiguration.java | 19 * The list of groups this class/method belongs to. 22 public void setGroups(String[] groups); 25 * The list of groups this method depends on. Every method 26 * member of one of these groups is guaranteed to have been 32 public void setDependsOnGroups(String[] groups);
|
/external/testng/src/test/java/test/configuration/ |
Base.java | 7 @Test(groups = {"base"})
16 @BeforeGroups(groups = "foo")
|
ConfigurationGroupInvocationCountSampleTest.java | 13 @BeforeGroups(groups={"twice"}, value={"twice"}) 19 @Test(groups = {"twice"}, invocationCount = 3) 25 @AfterGroups(groups={"twice"}, value={"twice"})
|
ConfigurationGroups8SampleTest.java | 27 @Test(groups = { "A" }) 32 @Test(groups = { "A" }) 42 @AfterMethod(groups = "A") 47 @Test(dependsOnGroups = "A", groups = "B")
|
/external/testng/src/test/java/test/dataprovider/ |
DependentSampleTest.java | 12 @Test(groups = { "a" }, dataProvider = "data") 19 @Test(groups = { "b" }, dependsOnGroups = { "a" })
|
TestContextSampleTest.java | 23 String[] groups = ctx.getIncludedGroups();
local 25 int n = groups.length > 0 ? new Integer(groups[0]): 0;
40 @Test(dataProvider = "testContext", groups="10")
45 @Test(dataProvider = "testContext", groups="5")
|
/external/testng/src/test/java/test/dependent/ |
DependentOnGroup2AlwaysRunSampleTest.java | 16 @Test(groups = { "group-a"}) 21 @Test(groups = { "group-a"})
|
ImplicitMethodInclusionSampleTest.java | 6 @Test(groups = {"linux"}) 11 @Test(groups = {"linux", "windows"} , dependsOnMethods={"a"})
|
C1.java | 7 @Test(groups="group1")
|
DifferentClassDependsOnGroupsTest1.java | 10 @Test(groups = { "mainGroup" })
|
SampleDependent1.java | 8 * This class exercises dependent groups 15 @Test(groups = { "fail" })
|
/external/testng/src/test/java/test/groupinvocation/ |
GroupConfiguration.java | 11 @BeforeGroups(groups={"a"})
16 @AfterGroups(groups={"a"})
|
/external/testng/src/test/java/test/testng93/ |
SingleTestTest.java | 11 @BeforeMethod(groups={"group1"})
16 @Test(groups={"group1"})
|
/external/iproute2/ip/ |
ipmonitor.c | 153 unsigned groups = 0; local 165 groups |= nl_mgrp(RTNLGRP_LINK); 166 groups |= nl_mgrp(RTNLGRP_IPV4_IFADDR); 167 groups |= nl_mgrp(RTNLGRP_IPV6_IFADDR); 168 groups |= nl_mgrp(RTNLGRP_IPV4_ROUTE); 169 groups |= nl_mgrp(RTNLGRP_IPV6_ROUTE); 170 groups |= nl_mgrp(RTNLGRP_MPLS_ROUTE); 171 groups |= nl_mgrp(RTNLGRP_IPV4_MROUTE); 172 groups |= nl_mgrp(RTNLGRP_IPV6_MROUTE); 173 groups |= nl_mgrp(RTNLGRP_IPV6_PREFIX) [all...] |
/external/testng/src/test/java/test/factory/ |
FactoryOrderSampleTest.java | 20 @BeforeClass(groups = { "s1ds" }) 25 @Test(groups = { "s1ds" }) 31 @AfterClass(groups = { "s1ds" })
|
/external/openssh/openbsd-compat/ |
getgrouplist.c | 46 getgrouplist(const char *uname, gid_t agroup, gid_t *groups, int *grpcnt) 64 groups[ngroups++] = agroup; 67 * Scan the group file to find additional groups. 74 if (groups[i] == grp->gr_gid) 84 groups[ngroups++] = grp->gr_gid;
|
/external/testng/src/test/java/test/classgroup/ |
First.java | 5 @Test(groups = { "first" })
|
/external/testng/src/test/java/test/dependent/functionality1/ |
Test1.java | 5 @Test (groups = "tests.functional.package")
|
Test2.java | 5 @Test(groups = "tests.functional.upload", dependsOnGroups = "tests.functional.package")
|
/external/testng/src/test/java/test/methodinterceptors/ |
FastTestsFirstInterceptor.java | 21 Set<String> groups = new HashSet<>(); local 22 for (String group : test.groups()) { 23 groups.add(group); 25 if (groups.contains("fast")) {
|