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

1 2

  /external/junit/src/main/java/org/junit/runners/
Suite.java 19 * Using <code>Suite</code> as a runner allows you to manually
20 * build a suite containing tests from many classes. It is the JUnit 4 equivalent of the JUnit 3.8.x
21 * static {@link junit.framework.Test} <code>suite()</code> method. To use it, annotate a class
22 * with <code>@RunWith(Suite.class)</code> and <code>@SuiteClasses({TestClass1.class, ...})</code>.
23 * When you run this class, it will run all the tests in all the suite classes.
27 public class Suite extends ParentRunner<Runner> {
29 * Returns an empty suite.
33 return new Suite((Class<?>) null, new Class<?>[0]);
41 * annotated with <code>@RunWith(Suite.class)</code> is run.
64 * Called reflectively on classes annotated with <code>@RunWith(Suite.class)</code
    [all...]
  /external/autotest/client/site_tests/graphics_dEQP/
generate_controlfiles.py 18 Test = namedtuple('Test', 'filter, suite, shards, time, hasty, tag, test_file, perf_failure_description')
22 'suite:deqp, suite:graphics_per-day, suite:graphics_system, suite:bvt-inline')
24 'suite:deqp, suite:graphics_per-day, suite:graphics_system, '
25 'suite:bvt-perbuild'
27 ATTRIBUTES_DAILY = 'suite:deqp, suite:graphics_per-day, suite:graphics_system
    [all...]
  /external/expat/tests/
minicheck.h 70 typedef struct Suite Suite;
74 Suite *suite; member in struct:SRunner
79 struct Suite {
105 Suite *suite_create(const char *name);
107 void suite_add_tcase(Suite *suite, TCase *tc);
112 SRunner *srunner_create(Suite *suite);
    [all...]
  /external/vogar/src/vogar/
XmlReportPrinter.java 76 Map<String, Suite> suites = testsToSuites(results);
80 for (Suite suite : suites.values()) {
81 String fileName = "TEST-" + suite.name + ".xml";
82 suite.printReport(timestamp, fileName);
88 private Map<String, Suite> testsToSuites(Collection<Outcome> outcomes) {
89 Map<String, Suite> result = new LinkedHashMap<String, Suite>();
96 Suite suite = result.get(suiteName) local
    [all...]
  /external/autotest/server/cros/dynamic_suite/
suite.py 85 @var _max_retries: Maximum retry limit at suite level.
88 the suite can't exceed _max_retries.
100 jobs that are originally scheduled by the suite.
104 for the suite. Default to None, no max.
135 """Return whether maximum retry limit for a suite has been reached."""
257 """Create test jobs for a suite."""
278 @param tag: a string with which to tag jobs run in this suite.
279 @param builds: the builds on which we're running this suite.
280 @param board: the board on which we're running this suite.
282 @param max_runtime_mins: Maximum suite runtime, in minutes
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
Python-ast.h 57 } Suite;
381 #define Suite(a0, a1) _Py_Suite(a0, a1)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
Python-ast.h 57 } Suite;
381 #define Suite(a0, a1) _Py_Suite(a0, a1)
  /external/python/cpython2/Include/
Python-ast.h 57 } Suite;
381 #define Suite(a0, a1) _Py_Suite(a0, a1)
  /prebuilts/gdb/darwin-x86/include/python2.7/
Python-ast.h 57 } Suite;
381 #define Suite(a0, a1) _Py_Suite(a0, a1)
  /prebuilts/gdb/linux-x86/include/python2.7/
Python-ast.h 57 } Suite;
381 #define Suite(a0, a1) _Py_Suite(a0, a1)
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
Python-ast.h 57 } Suite;
381 #define Suite(a0, a1) _Py_Suite(a0, a1)
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
Python-ast.h 57 } Suite;
381 #define Suite(a0, a1) _Py_Suite(a0, a1)
  /external/python/cpython3/Include/
Python-ast.h 61 } Suite;
448 #define Suite(a0, a1) _Py_Suite(a0, a1)
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
Python-ast.c 685 Suite_type = make_type("Suite", mod_type, Suite_fields, 1);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
Python-ast.c 668 Suite_type = make_type("Suite", mod_type, Suite_fields, 1);
    [all...]
  /external/python/cpython2/Python/
Python-ast.c 685 Suite_type = make_type("Suite", mod_type, Suite_fields, 1);
    [all...]
  /external/python/cpython3/Python/
Python-ast.c 865 Suite_type = make_type("Suite", mod_type, Suite_fields, 1);
    [all...]
  /libcore/support/src/test/java/tests/resources/
junit4-4.3.1.jar 
  /external/annotation-tools/scene-lib/
junit.jar 
  /external/owasp/sanitizer/lib/junit/
junit-dep.jar 
junit.jar 
  /external/javaparser/javaparser-symbol-solver-testing/src/test/resources/
junit-4.8.1.jar 
  /external/libphonenumber/lib/
junit-4.8.1.jar 
  /prebuilts/tools/common/m2/repository/junit/junit/4.10/
junit-4.10.jar 
  /prebuilts/tools/common/m2/repository/junit/junit/4.11/
junit-4.11.jar 

Completed in 836 milliseconds

1 2