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

1 2 3 4 5 6 7 8 91011>>

  /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...]
JUnit4TestCaseFacade.java 25 public void run(TestResult result) {
  /frameworks/base/test-runner/src/android/test/
NoExecTestResult.java 19 import junit.framework.TestResult;
28 class NoExecTestResult extends TestResult {
  /external/testng/src/test/java/test/junit/testsetup/
LoggingTestSuite.java 5 import junit.framework.TestResult;
16 public void run( TestResult result )
22 public void runTest( Test test, TestResult result )
  /external/mockftpserver/branches/1.x_Branch/src/test/java/org/mockftpserver/test/
AbstractTestSuite.java 18 import junit.framework.TestResult;
44 * @see junit.framework.Test#run(junit.framework.TestResult)
46 public void run(TestResult arg0) {
  /external/icu/icu4c/source/test/letest/
letest.h 40 struct TestResult
49 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/jsoncpp/src/test_lib_json/
jsontest.cpp 73 // class TestResult
76 TestResult::TestResult()
84 void TestResult::setTestName(const std::string& name) { name_ = name; }
86 TestResult&
87 TestResult::addFailure(const char* file, unsigned int line, const char* expr) {
111 void TestResult::addFailureInfo(const char* file,
125 TestResult& TestResult::popPredicateContext() {
141 bool TestResult::failed() const { return !failures_.empty();
    [all...]
jsontest.h 55 class TestResult {
57 TestResult();
71 TestResult&
77 TestResult& popPredicateContext();
84 template <typename T> TestResult& operator<<(const T& value) {
93 TestResult& operator<<(bool value);
95 TestResult& operator<<(Json::Int64 value);
96 TestResult& operator<<(Json::UInt64 value);
99 TestResult& addToLastFailure(const std::string& message);
124 void run(TestResult& result)
    [all...]
  /external/chromium-trace/catapult/telemetry/telemetry/testing/
progress_reporter.py 48 """TestSuite that can delegate start and stop calls to a TestResult object."""
61 result = TestResult(progress_reporters)
74 class TestResult(unittest.TestResult):
76 super(TestResult, self).__init__()
85 super(TestResult, self).startTest(test)
94 super(TestResult, self).startTestRun()
99 super(TestResult, self).stopTest(test)
108 super(TestResult, self).stopTestRun()
113 super(TestResult, self).addError(test, err
    [all...]
  /cts/common/util/tests/src/com/android/compatibility/common/util/
TestResultTest.java 22 * Unit tests for {@link TestResult}
30 private TestResult mResult;
35 mResult = new TestResult(mCase, METHOD_1);
  /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...]
  /external/icu/icu4c/source/test/perf/leperf/
xmlreader.h 21 TestResult *expected);
  /external/junit/src/junit/textui/
TestRunner.java 8 import junit.framework.TestResult;
75 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 public TestResult start(String args[]) throws Exception
    [all...]
  /development/tools/hosttestlib/src/com/android/hosttest/
DeviceTestSuite.java 22 import junit.framework.TestResult;
53 public void runTest(Test test, TestResult result) {
  /frameworks/base/core/java/android/test/
InstrumentationTestSuite.java 23 import junit.framework.TestResult;
71 public void runTest(Test test, TestResult result) {
  /external/autotest/frontend/tko/
resources.py 4 class TestResult(resource_lib.InstanceEntry):
26 rep = super(TestResult, self).short_representation()
37 rep = super(TestResult, self).full_representation()
46 entry_class = TestResult
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/base/
GnssCtsTestSuite.java 20 import junit.framework.TestResult;
42 public void run(TestResult testResult) {
43 mWrappedTestSuite.run(new GnssCtsTestResult(mContext, testResult));
62 public void runTest(Test test, TestResult testResult) {
63 mWrappedTestSuite.runTest(test, testResult);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
SensorCtsTestSuite.java 20 import junit.framework.TestResult;
42 public void run(TestResult testResult) {
43 mWrappedTestSuite.run(new SensorCtsTestResult(mContext, testResult));
62 public void runTest(Test test, TestResult testResult) {
63 mWrappedTestSuite.runTest(test, testResult);
  /external/guava/guava-testlib/test/com/google/common/collect/testing/
FeatureSpecificTestSuiteBuilderTest.java 23 import junit.framework.TestResult;
77 TestResult result = new TestResult();

Completed in 893 milliseconds

1 2 3 4 5 6 7 8 91011>>