HomeSort by relevance Sort by last modified time
    Searched refs:groups (Results 126 - 150 of 1042) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/testng/src/test/java/test/tmp/
Test0.java 13 @Test(groups = { "G0" })
TestFixture.java 17 @Configuration(beforeTest=true, groups="fixture")
  /external/chromium-trace/catapult/third_party/polymer/components/web-animations-js/test/js/
effect.js 233 test('Make property specific keyframe groups for a simple effect with one property.', function() {
234 var groups;
236 groups = makePropertySpecificKeyframeGroups(normalizeKeyframes([
242 assert.equal(Object.getOwnPropertyNames(groups).length, 1);
243 assert.equal(groups.left.length, 3);
244 assert.closeTo(groups.left[0].offset, 0, 0.001);
245 assert.equal(groups.left[0].value, '0px');
246 assert.closeTo(groups.left[1].offset, 0.3, 0.001);
247 assert.equal(groups.left[1].value, '200px');
248 assert.closeTo(groups.left[2].offset, 1, 0.001)
    [all...]
  /external/testng/src/main/java/org/testng/internal/
ConfigurationGroupMethods.java 89 String[] groups= m.getGroups(); local
90 for(String g : groups) {
128 synchronized public void removeBeforeGroups(String[] groups) {
129 for(String group : groups) {
135 synchronized public void removeAfterGroups(Collection<String> groups) {
136 for(String group : groups) {
OverrideProcessor.java 11 * Override the groups included in the XML file with groups specified on the command line.
20 public OverrideProcessor(String[] groups, String[] excludedGroups) {
21 m_groups = groups;
  /external/deqp/scripts/opengl/
gen_query_util.py 65 def addNamePrefix (prefix, groups):
66 return [(groupName, [(prefix + queryName, querySize) for queryName, querySize in groupQueries]) for groupName, groupQueries in groups]
  /external/jetty/src/java/org/eclipse/jetty/security/authentication/
LoginCallbackImpl.java 96 public void setRoles(String[] groups)
98 this.roles = groups;
  /external/testng/src/test/java/test/configuration/
ConfigurationGroups1SampleTest.java 28 @Test(groups = "cg1-a")
33 @Test(groups = "cg1-1")
ConfigurationGroups5SampleTest.java 25 @Test(groups = "cg5-1")
34 @Test(groups = "cg5-2")
ConfigurationGroups6SampleTest.java 24 @Test(groups = "cg6-1")
31 @Test(groups = "cg6-1")
ConfigurationGroups7SampleTest.java 20 @Test(groups = {"A"})
25 @Test(groups = {"A"})
  /toolchain/binutils/binutils-2.25/binutils/testsuite/binutils-all/
strip-1.d 11 There are no section groups in this file.
strip-4.d 11 There are no section groups in this file.
strip-6.d 11 There are no section groups in this file.
strip-8.d 11 There are no section groups in this file.
  /external/jcommander/src/test/java/com/beust/jcommander/args/
ArgsDefault.java 34 @Parameter(names = "-groups", description = "Comma-separated list of group names to be run")
35 public String groups; field in class:ArgsDefault
  /external/testng/src/main/java/org/testng/annotations/
AfterClass.java 15 * The list of groups this class/method belongs to.
17 public String[] groups() default {};
20 * The list of groups this method depends on. Every method
21 * member of one of these groups is guaranteed to have been
45 * regardless of what groups it belongs to.
55 * If true, this &#64;Configuration method will belong to groups specified in the
AfterGroups.java 10 * The list of groups that this configuration method will run after. If
11 * specified it overrides the list of groups provided through
12 * {@link #groups()} attribute. This method is guaranteed to run shortly
13 * after the last test method that belongs to any of these groups is
24 * The list of groups this class/method belongs to. The list also describes the groups
27 public String[] groups() default {};
30 * The list of groups this method depends on. Every method
31 * member of one of these groups is guaranteed to have been
55 * regardless of what groups it belongs to
    [all...]
AfterMethod.java 15 * The list of groups this class/method belongs to.
17 public String[] groups() default {};
20 * The list of groups this method depends on. Every method
21 * member of one of these groups is guaranteed to have been
45 * regardless of what groups it belongs to.
55 * If true, this &#64;Configuration method will belong to groups specified in the
AfterSuite.java 15 * The list of groups this class/method belongs to.
17 public String[] groups() default {};
20 * The list of groups this method depends on. Every method
21 * member of one of these groups is guaranteed to have been
45 * regardless of what groups it belongs to.
55 * If true, this &#64;Configuration method will belong to groups specified in the
AfterTest.java 15 * The list of groups this class/method belongs to.
17 public String[] groups() default {};
20 * The list of groups this method depends on. Every method
21 * member of one of these groups is guaranteed to have been
45 * regardless of what groups it belongs to.
55 * If true, this &#64;Configuration method will belong to groups specified in the
BeforeClass.java 15 * The list of groups this class/method belongs to.
17 public String[] groups() default {};
20 * The list of groups this method depends on. Every method
21 * member of one of these groups is guaranteed to have been
45 * regardless of what groups it belongs to.
55 * If true, this &#64;Configuration method will belong to groups specified in the
BeforeGroups.java 10 * The list of groups that this configuration method will run before. If specified it overrides the
11 * list of groups provided through {@link #groups()} attribute.
13 * belongs to any of these groups is invoked.
23 * The list of groups this class/method belongs to. This list also describes the groups
26 public String[] groups() default {};
29 * The list of groups this method depends on. Every method
30 * member of one of these groups is guaranteed to have been
54 * regardless of what groups it belongs to
    [all...]
BeforeMethod.java 15 * The list of groups this class/method belongs to.
17 public String[] groups() default {};
20 * The list of groups this method depends on. Every method
21 * member of one of these groups is guaranteed to have been
45 * regardless of what groups it belongs to.
55 * If true, this &#64;Configuration method will belong to groups specified in the
BeforeSuite.java 15 * The list of groups this class/method belongs to.
17 public String[] groups() default {};
20 * The list of groups this method depends on. Every method
21 * member of one of these groups is guaranteed to have been
45 * regardless of what groups it belongs to.
55 * If true, this &#64;Configuration method will belong to groups specified in the

Completed in 225 milliseconds

1 2 3 4 56 7 8 91011>>