/external/junit/src/junit/textui/ |
D | TestRunner.java | 8 import junit.framework.TestResult; 75 static public TestResult run(Test test) { in run() 104 protected TestResult createTestResult() { in createTestResult() 105 return new TestResult(); in createTestResult() 108 public TestResult doRun(Test test) { in doRun() 112 public TestResult doRun(Test suite, boolean wait) { in doRun() 113 TestResult result= createTestResult(); in doRun() 138 TestResult r= aTestRunner.start(args); in main() 152 public TestResult start(String args[]) throws Exception { in start() 186 …protected TestResult runSingleMethod(String testCase, String method, boolean wait) throws Exceptio… in runSingleMethod()
|
D | ResultPrinter.java | 14 import junit.framework.TestResult; 28 synchronized void print(TestResult result, long runTime) { in print() 48 protected void printErrors(TestResult result) { in printErrors() 52 protected void printFailures(TestResult result) { in printFailures() 82 protected void printFooter(TestResult result) { in printFooter()
|
/external/llvm/utils/lit/lit/ |
D | Test.py | 5 class TestResult: class 10 PASS = TestResult('PASS', False) 11 XFAIL = TestResult('XFAIL', False) 12 FAIL = TestResult('FAIL', True) 13 XPASS = TestResult('XPASS', True) 14 UNRESOLVED = TestResult('UNRESOLVED', True) 15 UNSUPPORTED = TestResult('UNSUPPORTED', False)
|
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/ |
D | test_results_unittest.py | 31 from test_results import TestResult 36 result = TestResult("foo") 42 result = TestResult(filename='foo', 46 new_result = TestResult.loads(s) 47 self.assertTrue(isinstance(new_result, TestResult))
|
D | single_test_runner.py | 36 from webkitpy.layout_tests.layout_package.test_results import TestResult 115 return TestResult(self._filename) 138 return TestResult(self._filename, failures, driver_output.test_time) 220 return TestResult(self._filename, failures, driver_output.test_time) 226 return TestResult(self._filename, failures, driver_output.test_time) 285 return TestResult(self._filename, failures, total_test_time) 288 return TestResult(self._filename, failures, total_test_time) 295 return TestResult(self._filename, failures, total_test_time)
|
D | json_results_generator.py | 66 class TestResult(object): class 112 MODIFIER_TO_CHAR = {TestResult.NONE: PASS_RESULT, 113 TestResult.DISABLED: SKIP_RESULT, 114 TestResult.FAILS: FAIL_RESULT, 115 TestResult.FLAKY: FLAKY_RESULT} 320 if test_result.modifier == TestResult.DISABLED:
|
/external/chromium/chrome/browser/remoting/ |
D | directory_add_request_unittest.cc | 28 void TestResult(int response_code, const std::string& data, in TestResult() function in remoting::DirectoryAddRequestTest 50 TestResult(200, "{\"data\":{\"kind\":\"chromoting#host\"," in TEST_F() 57 TestResult(400, "{\"error\":{\"errors\":[{\"domain\":\"global\"," in TEST_F() 66 TestResult(400, "{\"error\":{\"errors\":[{\"domain\":\"global\"," in TEST_F() 74 TestResult(401, "{\"error\":{\"errors\":[{\"domain\":\"global\"," in TEST_F()
|
/external/embunit/inc/ |
D | TestResult.h | 61 void TestResult_init(TestResult* self,TestListner* listner); 62 void TestResult_startTest(TestResult* self,Test* test); 63 void TestResult_endTest(TestResult* self,Test* test); 64 void TestResult_addFailure(TestResult* self,Test* test,const char* msg,int line,const char* file);
|
D | Test.h | 38 typedef struct __TestResult TestResult; typedef 45 typedef void(*TestRunFunction)(void*,TestResult*);
|
/external/junit/src/junit/framework/ |
D | TestCase.java | 106 protected TestResult createResult() { in createResult() 107 return new TestResult(); in createResult() 115 public TestResult run() { in run() 116 TestResult result= createResult(); in run() 123 public void run(TestResult result) { in run()
|
/external/embunit/src/ |
D | TestResult.c | 39 void TestResult_init(TestResult* self,TestListner* listner) in TestResult_init() 46 void TestResult_startTest(TestResult* self,Test* test) in TestResult_startTest() 54 void TestResult_endTest(TestResult* self,Test* test) in TestResult_endTest() 61 void TestResult_addFailure(TestResult* self,Test* test,const char* msg,int line,const char* file) in TestResult_addFailure()
|
D | TestCase.c | 39 static TestResult* result_; 47 void TestCase_run(TestCase* self,TestResult* result) in TestCase_run() 54 TestResult* wr =result_; /*push*/ in TestCase_run()
|
/external/junit/src/junit/extensions/ |
D | TestDecorator.java | 5 import junit.framework.TestResult; 23 public void basicRun(TestResult result) { in basicRun() 31 public void run(TestResult result) { in run()
|
D | ActiveTestSuite.java | 5 import junit.framework.TestResult; 33 public void run(TestResult result) { in run() 40 public void runTest(final Test test, final TestResult result) { in runTest()
|
D | TestSetup.java | 5 import junit.framework.TestResult; 19 public void run(final TestResult result) { in run()
|
D | RepeatedTest.java | 4 import junit.framework.TestResult; 26 public void run(TestResult result) { in run()
|
/external/icu4c/test/letest/ |
D | letest.h | 35 struct TestResult struct 44 typedef struct TestResult TestResult; argument
|
/external/chromium/chrome/browser/diagnostics/ |
D | diagnostics_test.h | 39 virtual DiagnosticsModel::TestResult GetResult(); 56 DiagnosticsModel::TestResult result); 69 DiagnosticsModel::TestResult result_;
|
D | diagnostics_model.h | 20 enum TestResult { enum 54 virtual TestResult GetResult() = 0;
|
D | diagnostics_test.cc | 33 DiagnosticsModel::TestResult DiagnosticTest::GetResult() { in GetResult() 42 DiagnosticsModel::TestResult result) { in RecordOutcome()
|
/external/chromium/sdch/open-vcdiff/src/gtest/src/ |
D | gtest-internal-inl.h | 452 class TestResult { 455 TestResult(); 458 ~TestResult(); 533 GTEST_DISALLOW_COPY_AND_ASSIGN(TestResult); 565 internal::TestResult* result() { return &result_; } in result() 566 const internal::TestResult* result() const { return &result_; } in result() 597 internal::TestResult result_; 898 internal::TestResult* current_test_result(); 901 const internal::TestResult* ad_hoc_test_result() const { in ad_hoc_test_result() 1079 internal::TestResult ad_hoc_test_result_;
|
/external/antlr/antlr-3.4/runtime/Python/ |
D | xmlrunner.py | 85 class _XMLTestResult(unittest.TestResult): 94 unittest.TestResult.__init__(self) 102 unittest.TestResult.startTest(self, test) 109 unittest.TestResult.stopTest(self, test) 119 unittest.TestResult.addError(self, test, err) 123 unittest.TestResult.addFailure(self, test, err)
|
/external/bluetooth/glib/tests/ |
D | shell-test.c | 36 typedef struct _TestResult TestResult; typedef 77 static const TestResult 97 const TestResult *result) in print_test() 123 do_argv_test (const gchar *cmdline, const TestResult *result) in do_argv_test()
|
/external/protobuf/gtest/src/ |
D | gtest-internal-inl.h | 556 TestResult* result() { return &result_; } in result() 557 const TestResult* result() const { return &result_; } in result() 588 TestResult result_; 821 TestResult* current_test_result(); 824 const TestResult* ad_hoc_test_result() const { return &ad_hoc_test_result_; } in ad_hoc_test_result() 1088 TestResult ad_hoc_test_result_; 1229 static void RecordProperty(TestResult* test_result, in RecordProperty() 1234 static void ClearTestPartResults(TestResult* test_result) { in ClearTestPartResults() 1239 const TestResult& test_result) { in test_part_results()
|
/external/junit/src/org/junit/internal/runners/ |
D | JUnit38ClassRunner.java | 8 import junit.framework.TestResult; 81 TestResult result= new TestResult(); in run()
|