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

1 2

  /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...]
runtests.c 4 runtest.c : run the Expat test suite
    [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/chromium_org/third_party/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);
Antlr.Runtime.Tests.pas 182 RegisterTest(TestANTLRStringStream.Suite);
  /external/freetype/src/base/
ftbbox.c 112 goto Suite;
117 goto Suite;
126 goto Suite;
132 Suite:
  /external/nist-pkits/
extract-pkits-tests.pl 19 # This script parses the NIST PKI Test Suite test descriptions document
158 if ($_ =~ /^\s*5 Relationship to Previous Test Suite\s*[^.]/) {
  /external/qemu/distrib/sdl-1.2.15/src/video/riscos/
SDL_riscosASM.S 17 ; Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  /external/chromium_org/components/test/data/web_database/
version_31.sql 18 INSERT INTO "autofill_profiles" VALUES('Elvis Presley, 1122 PBJ Lane',1,'Elvis','','Presley','elvis@elvis.com','Hip Shake Inc.','1122 PBJ Lane','Suite 1','Memphis','TN','38116','UK','9013323322','',1288642516,'A4FF32F6-EF3F-379A-87F2-40A8811182A7');
version_33.sql 18 INSERT INTO "autofill_profiles" VALUES('45285F35-4A04-5F47-DBCC-CA8C2F2A5944','Hip Shake Inc.','1122 PBJ Lane','Suite 1','Memphis','TN','38116','United States',1298621949);
  /libcore/support/src/test/java/tests/resources/
junit4-4.3.1.jar 
  /external/robolectric/lib/main/
junit-dep-4.8.2.jar 
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
Python-ast.h 57 } Suite;
381 #define Suite(a0, a1) _Py_Suite(a0, a1)

Completed in 374 milliseconds

1 2