Home
last modified time | relevance | path

Searched refs:TestResult (Results 1 – 25 of 78) sorted by relevance

1234

/external/junit/src/junit/textui/
DTestRunner.java8 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()
DResultPrinter.java14 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/
DTest.py5 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/
Dtest_results_unittest.py31 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))
Dsingle_test_runner.py36 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)
Djson_results_generator.py66 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/
Ddirectory_add_request_unittest.cc28 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/
DTestResult.h61 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);
DTest.h38 typedef struct __TestResult TestResult; typedef
45 typedef void(*TestRunFunction)(void*,TestResult*);
/external/junit/src/junit/framework/
DTestCase.java106 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/
DTestResult.c39 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()
DTestCase.c39 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/
DTestDecorator.java5 import junit.framework.TestResult;
23 public void basicRun(TestResult result) { in basicRun()
31 public void run(TestResult result) { in run()
DActiveTestSuite.java5 import junit.framework.TestResult;
33 public void run(TestResult result) { in run()
40 public void runTest(final Test test, final TestResult result) { in runTest()
DTestSetup.java5 import junit.framework.TestResult;
19 public void run(final TestResult result) { in run()
DRepeatedTest.java4 import junit.framework.TestResult;
26 public void run(TestResult result) { in run()
/external/icu4c/test/letest/
Dletest.h35 struct TestResult struct
44 typedef struct TestResult TestResult; argument
/external/chromium/chrome/browser/diagnostics/
Ddiagnostics_test.h39 virtual DiagnosticsModel::TestResult GetResult();
56 DiagnosticsModel::TestResult result);
69 DiagnosticsModel::TestResult result_;
Ddiagnostics_model.h20 enum TestResult { enum
54 virtual TestResult GetResult() = 0;
Ddiagnostics_test.cc33 DiagnosticsModel::TestResult DiagnosticTest::GetResult() { in GetResult()
42 DiagnosticsModel::TestResult result) { in RecordOutcome()
/external/chromium/sdch/open-vcdiff/src/gtest/src/
Dgtest-internal-inl.h452 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/
Dxmlrunner.py85 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/
Dshell-test.c36 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/
Dgtest-internal-inl.h556 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/
DJUnit38ClassRunner.java8 import junit.framework.TestResult;
81 TestResult result= new TestResult(); in run()

1234