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

1 2 3 4 5 6 7 8 9

  /external/junit/src/junit/framework/
Test.java 6 * @see TestResult
14 * Runs a test and collects its result in a TestResult instance.
16 public abstract void run(TestResult result);
TestCase.java 73 * @see TestResult
96 * Counts the number of test cases executed by run(TestResult result).
102 * Creates a default TestResult object
104 * @see TestResult
106 protected TestResult createResult() {
107 return new TestResult();
111 * default TestResult object.
113 * @see TestResult
115 public TestResult run() {
116 TestResult result= createResult()
    [all...]
  /frameworks/base/test-runner/src/android/test/
NoExecTestResult.java 19 import junit.framework.TestResult;
27 class NoExecTestResult extends TestResult {
  /external/embunit/inc/
TestResult.h 33 * $Id: TestResult.h,v 1.7 2004/02/10 16:19:29 arms22 Exp $
42 /*typedef struct __TestResult TestResult;*//* -> Test.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);
Test.h 38 typedef struct __TestResult TestResult;
45 typedef void(*TestRunFunction)(void*,TestResult*);
embUnit.h 41 #include <TestResult.h>
  /external/embunit/src/
TestResult.c 33 * $Id: TestResult.c,v 1.4 2004/02/10 16:19:29 arms22 Exp $
37 #include "TestResult.h"
39 void TestResult_init(TestResult* self,TestListner* listner)
46 void TestResult_startTest(TestResult* self,Test* test)
54 void TestResult_endTest(TestResult* self,Test* test)
61 void TestResult_addFailure(TestResult* self,Test* test,const char* msg,int line,const char* file)
TestCase.c 37 #include "TestResult.h"
39 static TestResult* result_;
47 void TestCase_run(TestCase* self,TestResult* result)
54 TestResult* wr =result_; /*push*/
  /frameworks/testing/androidtestlib/src/com/android/test/runner/junit3/
NoExecTestResult.java 19 import junit.framework.TestResult;
26 class NoExecTestResult extends TestResult {
NonExecutingJUnit3ClassRunner.java 18 import junit.framework.TestResult;
36 TestResult result = new NoExecTestResult();
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/models/
test_results_unittest.py 31 from webkitpy.layout_tests.models.test_results import TestResult
36 result = TestResult("foo")
42 result = TestResult(test_name='foo',
46 new_result = TestResult.loads(s)
47 self.assertIsInstance(new_result, TestResult)
  /external/chromium_org/third_party/icu/source/test/letest/
letest.h 35 struct TestResult
44 typedef struct TestResult TestResult;
xmlreader.h 21 TestResult *expected);
  /external/icu4c/test/letest/
letest.h 35 struct TestResult
44 typedef struct TestResult TestResult;
xmlreader.h 21 TestResult *expected);
  /external/junit/src/junit/extensions/
TestDecorator.java 5 import junit.framework.TestResult;
23 public void basicRun(TestResult result) {
31 public void run(TestResult result) {
RepeatedTest.java 4 import junit.framework.TestResult;
26 public void run(TestResult result) {
TestSetup.java 5 import junit.framework.TestResult;
19 public void run(final TestResult result) {
ActiveTestSuite.java 5 import junit.framework.TestResult;
33 public void run(TestResult result) {
40 public void runTest(final Test test, final TestResult result) {
  /external/chromium/chrome/browser/remoting/
directory_add_request_unittest.cc 28 void TestResult(int response_code, const std::string& data,
50 TestResult(200, "{\"data\":{\"kind\":\"chromoting#host\","
57 TestResult(400, "{\"error\":{\"errors\":[{\"domain\":\"global\","
66 TestResult(400, "{\"error\":{\"errors\":[{\"domain\":\"global\","
74 TestResult(401, "{\"error\":{\"errors\":[{\"domain\":\"global\","
  /external/chromium/chrome/browser/diagnostics/
diagnostics_test.h 39 virtual DiagnosticsModel::TestResult GetResult();
56 DiagnosticsModel::TestResult result);
69 DiagnosticsModel::TestResult result_;
diagnostics_model.h 20 enum TestResult {
54 virtual TestResult GetResult() = 0;
  /external/chromium_org/base/test/
test_launcher.h 32 struct TestResult {
33 TestResult();
61 typedef base::Callback<void(const TestResult& result)> TestResultCallback;
  /external/harfbuzz_ng/src/hb-icu-le/
letest.h 47 struct TestResult
56 typedef struct TestResult TestResult;
  /frameworks/base/tests/CanvasCompare/src/com/android/test/hwuicompare/
AutomaticActivity.java 121 private static class TestResult {
122 TestResult(String label, float error) {
141 final HashMap<String, TestResult> mModifierResults = new HashMap<String, TestResult>();
142 final HashMap<String, TestResult> mIndividualResults = new HashMap<String, TestResult>();
143 final HashMap<String, TestResult> mModifierDiffResults = new HashMap<String, TestResult>();
144 final HashMap<String, TestResult> mIndividualDiffResults = new HashMap<String, TestResult>();
    [all...]

Completed in 1354 milliseconds

1 2 3 4 5 6 7 8 9