HomeSort by relevance Sort by last modified time
    Searched refs:Suite (Results 1 - 25 of 2669) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/junit/src/org/junit/experimental/runners/
Enclosed.java 3 import org.junit.runners.Suite;
24 public class Enclosed extends Suite {
  /external/expat/tests/
minicheck.h 41 typedef struct Suite Suite;
45 Suite *suite; member in struct:SRunner
50 struct Suite {
76 Suite *suite_create(char *name);
78 void suite_add_tcase(Suite *suite, TCase *tc);
83 SRunner *srunner_create(Suite *suite);
    [all...]
minicheck.c 15 Suite *
18 Suite *suite = (Suite *) calloc(1, sizeof(Suite)); local
19 if (suite != NULL) {
20 suite->name = name;
22 return suite;
36 suite_add_tcase(Suite *suite, TCase *tc)
113 Suite *suite; local
    [all...]
  /cts/tools/signature-tools/test/signature/comparator/
AllDocletTests.java 19 import org.junit.runners.Suite;
24 @RunWith(Suite.class)
25 @Suite.SuiteClasses({
AllDexTests.java 19 import org.junit.runners.Suite;
24 @RunWith(Suite.class)
25 @Suite.SuiteClasses({
  /cts/tools/signature-tools/test/signature/converter/
AllDexTests.java 20 import org.junit.runners.Suite;
25 @RunWith(Suite.class)
26 @Suite.SuiteClasses({
AllDocletTests.java 20 import org.junit.runners.Suite;
25 @RunWith(Suite.class)
26 @Suite.SuiteClasses({
  /external/junit/src/org/junit/runner/
Computer.java 3 import org.junit.runners.Suite;
21 * Create a suite for {@code classes}, building Runners with {@code builder}.
26 return new Suite(new RunnerBuilder() {
  /external/junit/src/org/junit/runners/
Suite.java 18 * Using <code>Suite</code> as a runner allows you to manually
19 * build a suite containing tests from many classes. It is the JUnit 4 equivalent of the JUnit 3.8.x
20 * static {@link junit.framework.Test} <code>suite()</code> method. To use it, annotate a class
21 * with <code>@RunWith(Suite.class)</code> and <code>@SuiteClasses({TestClass1.class, ...})</code>.
22 * When you run this class, it will run all the tests in all the suite classes.
24 public class Suite extends ParentRunner<Runner> {
26 * Returns an empty suite.
30 return new Suite((Class<?>)null, new Class<?>[0]);
38 * annotated with <code>@RunWith(Suite.class)</code> is run.
60 * Called reflectively on classes annotated with <code>@RunWith(Suite.class)</code
    [all...]
Parameterized.java 61 public class Parameterized extends Suite {
  /external/junit/src/org/junit/experimental/max/
MaxCore.java 18 import org.junit.runners.Suite;
110 return new Suite((Class<?>)null, runners) {};
120 return Suite.emptySuite();
  /external/freetype/src/base/
ftbbox.c 110 goto Suite;
115 goto Suite;
124 goto Suite;
130 Suite:
274 goto Suite;
281 Suite:
  /external/junit/src/org/junit/experimental/categories/
Categories.java 15 import org.junit.runners.Suite;
59 * // Note that Categories is a kind of Suite
64 public class Categories extends Suite {
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime.Tests/
Antlr.Runtime.Collections.Tests.pas 132 RegisterTest(TestIHashList.Suite);
133 RegisterTest(TestIStackList.Suite);
Antlr.Runtime.Tools.Tests.pas 627 RegisterTest(TestIANTLRString.Suite);
628 RegisterTest(TestTANTLRString.Suite);
629 RegisterTest(TestICloneable.Suite);
630 RegisterTest(TestIList.Suite);
631 RegisterTest(TestIDictionary.Suite);
632 RegisterTest(TestTLocalStorage.Suite);
  /external/webkit/LayoutTests/dom/html/level2/html/
hasFeature02.js 20 return "http://www.w3.org/2001/DOM-Test-Suite/level2/html/hasFeature02";
28 // running the test suite.
hasFeature05.js 20 return "http://www.w3.org/2001/DOM-Test-Suite/level2/html/hasFeature05";
28 // running the test suite.
hasFeature06.js 20 return "http://www.w3.org/2001/DOM-Test-Suite/level2/html/hasFeature06";
28 // running the test suite.
  /external/webkit/LayoutTests/dom/xhtml/level2/html/
hasFeature02.js 20 return "http://www.w3.org/2001/DOM-Test-Suite/level2/html/hasFeature02";
28 // running the test suite.
hasFeature05.js 20 return "http://www.w3.org/2001/DOM-Test-Suite/level2/html/hasFeature05";
28 // running the test suite.
hasFeature06.js 20 return "http://www.w3.org/2001/DOM-Test-Suite/level2/html/hasFeature06";
28 // running the test suite.
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
hasFeature01.js 20 return "http://www.w3.org/2001/DOM-Test-Suite/level3/core/hasFeature01";
28 // running the test suite.
hasFeature02.js 20 return "http://www.w3.org/2001/DOM-Test-Suite/level3/core/hasFeature02";
28 // running the test suite.
hasFeature03.js 20 return "http://www.w3.org/2001/DOM-Test-Suite/level3/core/hasFeature03";
28 // running the test suite.
hasFeature04.js 20 return "http://www.w3.org/2001/DOM-Test-Suite/level3/core/hasFeature04";
28 // running the test suite.

Completed in 480 milliseconds

1 2 3 4 5 6 7 8 91011>>