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

1 2 3 4 5

  /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/chromium/third_party/icu/source/test/letest/
letest.h 35 struct TestResult
44 typedef struct TestResult 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) {
TestSetup.java 15 public void run(final TestResult result) {
  /libcore/junit/src/main/java/junit/extensions/
TestDecorator.java 21 public void basicRun(TestResult result) {
27 public void run(TestResult result) {
  /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 {
  /libcore/junit/src/test/java/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 {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestResult.java 28 public class TestResult {
51 private static Intent createResult(Activity activity, int testResult) {
54 data.putExtra(TEST_RESULT, testResult);
59 * Convert the test activity's result into a {@link TestResult}. Only meant to be used by
62 public static TestResult fromActivityResult(int resultCode, Intent data) {
65 return new TestResult(name, result);
68 private TestResult(String name, int result) {

Completed in 1009 milliseconds

1 2 3 4 5