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

1 2 3 4 5 6

  /dalvik/dx/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 66 * @see TestResult
90 * Counts the number of test cases executed by run(TestResult result).
96 * Creates a default TestResult object
98 * @see TestResult
100 protected TestResult createResult() {
101 return new TestResult();
105 * default TestResult object.
107 * @see TestResult
109 public TestResult run() {
110 TestResult result= createResult()
    [all...]
  /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 68 * @see TestResult
92 * Counts the number of test cases executed by run(TestResult result).
98 * Creates a default TestResult object
100 * @see TestResult
102 protected TestResult createResult() {
103 return new TestResult();
107 * default TestResult object.
109 * @see TestResult
111 public TestResult run() {
112 TestResult result= createResult()
    [all...]
  /libcore/junit/src/main/java/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 66 * @see TestResult
90 * Counts the number of test cases executed by run(TestResult result).
96 * Creates a default TestResult object
98 * @see TestResult
100 protected TestResult createResult() {
101 return new TestResult();
105 * default TestResult object.
107 * @see TestResult
109 public TestResult run() {
110 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*);
  /external/junit/src/junit/swingui/
TestRunView.java 6 import junit.framework.TestResult;
34 public void aboutToStart(Test suite, TestResult result);
38 public void runFinished(Test suite, TestResult result);
  /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*/
  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
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))
  /external/icu4c/test/letest/
letest.h 35 struct TestResult
44 typedef struct TestResult TestResult;
  /external/junit/src/junit/extensions/
TestDecorator.java 5 import junit.framework.TestResult;
23 public void basicRun(TestResult result) {
29 public void run(TestResult result) {
RepeatedTest.java 4 import junit.framework.TestResult;
22 public void run(TestResult result) {
TestSetup.java 5 import junit.framework.TestResult;
17 public void run(final TestResult result) {
ActiveTestSuite.java 4 import junit.framework.TestResult;
31 public void run(TestResult result) {
37 public void runTest(final Test test, final TestResult result) {
  /dalvik/dx/src/junit/extensions/
TestDecorator.java 21 public void basicRun(TestResult result) {
27 public void run(TestResult result) {
  /libcore/junit/src/main/java/junit/extensions/
TestDecorator.java 21 public void basicRun(TestResult result) {
27 public void run(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;
  /dalvik/dx/src/junit/textui/
TestRunner.java 70 static public TestResult run(Test test) {
102 * Creates the TestResult to be used for the test run.
104 protected TestResult createTestResult() {
105 return new TestResult();
108 public TestResult doRun(Test test) {
112 public TestResult doRun(Test suite, boolean wait) {
113 TestResult result= createTestResult();
138 TestResult r= aTestRunner.start(args);
152 protected TestResult start(String args[]) throws Exception {
  /frameworks/base/test-runner/src/junit/textui/
TestRunner.java 70 static public TestResult run(Test test) {
102 * Creates the TestResult to be used for the test run.
104 protected TestResult createTestResult() {
105 return new TestResult();
108 public TestResult doRun(Test test) {
112 public TestResult doRun(Test suite, boolean wait) {
113 TestResult result= createTestResult();
138 TestResult r= aTestRunner.start(args);
152 protected TestResult start(String args[]) throws Exception {

Completed in 599 milliseconds

1 2 3 4 5 6