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

1 2

  /external/toolchain-utils/automation/
all_tests.py 15 testSuite = unittest.TestSuite(suites)
16 text_runner = unittest.TextTestRunner().run(testSuite)
  /external/vogar/test/vogar/target/junit3/
LongSuite.java 20 import junit.framework.TestSuite;
28 TestSuite testSuite = new TestSuite(LongSuite.class.getName());
29 testSuite.addTestSuite(LongTest.class);
30 testSuite.addTestSuite(LongTest2.class);
31 return testSuite;
  /external/antlr/gunit/src/main/java/org/antlr/gunit/swingui/runner/
NotifiedTestExecuter.java 40 private TestSuite testSuite ;
42 public NotifiedTestExecuter(GrammarInfo grammarInfo, ClassLoader loader, String testsuiteDir, TestSuite suite) {
45 testSuite = suite;
55 final Rule rule = testSuite.getRule(ruleName);
68 final Rule rule = testSuite.getRule(ruleName);
gUnitAdapter.java 36 import org.antlr.gunit.swingui.model.TestSuite;
45 private TestSuite testSuite;
47 public gUnitAdapter(TestSuite suite) throws IOException, ClassNotFoundException {
51 testSuite = suite;
55 if (testSuite == null)
56 throw new IllegalArgumentException("Null testsuite.");
62 final CharStream input = new ANTLRFileStream(testSuite.getTestSuiteFile().getCanonicalPath());
72 testSuite.getTestSuiteFile().getParent(), testSuite);
    [all...]
  /external/testng/src/test/java/test/
JUnit4Test.java 37 public void testSuite() {
JUnitTest1.java 55 public void testSuite() {
  /external/vogar/src/vogar/target/junit/junit3/
TestSuiteTransformer.java 25 import junit.framework.TestSuite;
35 * <p>Separates the traversing of the {@link TestSuite} hierarchy from the construction of the
56 if (test instanceof TestSuite) {
57 return transformSuite((TestSuite) test, defaultName, suiteDescription);
68 TestSuite testSuite, String defaultName, Description suiteDescription) {
70 int count = testSuite.testCount();
71 String name = testSuite.getName();
76 Test test = testSuite.testAt(i);
99 } else if (test instanceof TestSuite) {
    [all...]
  /external/antlr/gunit/src/main/java/org/antlr/gunit/swingui/
RuleListController.java 49 import org.antlr.gunit.swingui.model.TestSuite;
61 private TestSuite testSuite = null;
71 private void setTestSuite(TestSuite newTestSuite) {
72 testSuite = newTestSuite;
77 public void initialize(TestSuite ts) {
145 if(testSuite == null)
150 return testSuite.getRuleCount();
154 return testSuite.getRule(index);
  /external/boringssl/src/fipstools/
run_cavp.go 52 // testSuite describes a series of tests that are handled by a single oracle
54 type testSuite struct {
68 func (t *testSuite) getDirectory() string {
72 var aesGCMTests = testSuite{
84 var aesTests = testSuite{
129 var ecdsa2KeyPairTests = testSuite{
136 var ecdsa2PKVTests = testSuite{
143 var ecdsa2SigGenTests = testSuite{
153 var ecdsa2SigVerTests = testSuite{
160 var rsa2KeyGenTests = testSuite{
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/base/
GnssCtsTestActivity.java 27 import junit.framework.TestSuite;
150 TestSuite testSuite;
153 if (test instanceof TestSuite) {
154 testSuite = (TestSuite) test;
157 testClass.getName() + "#suite() did not return a TestSuite.");
160 testSuite = new TestSuite(testClass);
163 new GnssCtsTestSuite(getApplicationContext(), testSuite);
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
SensorCtsTestActivity.java 30 import junit.framework.TestSuite;
143 TestSuite testSuite;
146 if (test instanceof TestSuite) {
147 testSuite = (TestSuite) test;
150 testClass.getName() + "#suite() did not return a TestSuite.");
153 testSuite = new TestSuite(testClass);
156 new SensorCtsTestSuite(getApplicationContext(), testSuite);
    [all...]
  /cts/tools/release-parser/src/com/android/cts/releaseparser/
Main.java 90 TestSuite testSuite = tsParser.getTestSuite();
92 new FileOutputStream(getPathString(outputPath, "%s-TestSuite.pb", relNameVer));
93 testSuite.writeTo(tsOutput);
  /external/selinux/libsepol/cil/test/unit/
CuTest.c 261 void CuSuiteInit(CuSuite* testSuite)
263 testSuite->count = 0;
264 testSuite->failCount = 0;
265 memset(testSuite->list, 0, sizeof(testSuite->list));
270 CuSuite* testSuite = CU_ALLOC(CuSuite);
271 CuSuiteInit(testSuite);
272 return testSuite;
275 void CuSuiteDelete(CuSuite *testSuite)
280 if (testSuite->list[n]
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/camera/performance/
CameraPerformanceActivity.java 40 import junit.framework.TestSuite;
196 TestSuite suite = new TestSuite(TEST_CLASSES);
197 Enumeration<Test> testSuite = suite.tests();
198 while (testSuite.hasMoreElements()) {
199 Test s = testSuite.nextElement();
200 if (s instanceof TestSuite) {
201 Enumeration<Test> tests = ((TestSuite) s).tests();
231 Log.d(TAG, "Test is not instance of TestSuite");
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/data/
py2_test_grammar.py 647 def testSuite(self):
py3_test_grammar.py 591 def testSuite(self):
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_grammar.py 643 def testSuite(self):
    [all...]
  /external/python/cpython2/Lib/lib2to3/tests/data/
py2_test_grammar.py 647 def testSuite(self):
py3_test_grammar.py 591 def testSuite(self):
  /external/python/cpython3/Lib/lib2to3/tests/data/
py2_test_grammar.py 647 def testSuite(self):
py3_test_grammar.py 615 def testSuite(self):
  /cts/tools/vm-tests-tf/lib/
junit.jar 
  /external/guice/lib/build/
junit.jar 
  /external/jsr330/lib/
junit.jar 
  /external/slf4j/integration/lib/
junit-3.8.1.jar 

Completed in 1322 milliseconds

1 2