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

1 2 3 4 5 6 7 8 910

  /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...]
  /external/chromium_org/base/test/launcher/
test_result.cc 11 TestResult::TestResult() : status(TEST_UNKNOWN) {
14 TestResult::~TestResult() {
17 std::string TestResult::StatusAsString() const {
40 std::string TestResult::GetTestName() const {
46 std::string TestResult::GetTestCaseName() const {
test_result.h 15 struct TestResult {
26 TestResult();
27 ~TestResult();
test_results_tracker.cc 69 typedef std::map<std::string, std::vector<TestResult> > TestCaseMap;
77 TestResult result = i->second.test_results.back();
87 const TestResult& result = i->second[j];
93 if (result.status != TestResult::TEST_SUCCESS)
174 void TestResultsTracker::AddTestResult(const TestResult& result) {
184 PrintTests(tests_by_status[TestResult::TEST_FAILURE].begin(),
185 tests_by_status[TestResult::TEST_FAILURE].end(),
187 PrintTests(tests_by_status[TestResult::TEST_FAILURE_ON_EXIT].begin(),
188 tests_by_status[TestResult::TEST_FAILURE_ON_EXIT].end(),
190 PrintTests(tests_by_status[TestResult::TEST_TIMEOUT].begin()
    [all...]
  /frameworks/base/test-runner/src/android/test/
NoExecTestResult.java 19 import junit.framework.TestResult;
27 class NoExecTestResult extends TestResult {
  /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/icu/icu4c/source/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/jsoncpp/src/test_lib_json/
jsontest.h 61 class TestResult
64 TestResult();
78 TestResult &addFailure( const char *file, unsigned int line,
84 TestResult &popPredicateContext();
92 TestResult &operator << ( const T& value ) {
101 TestResult &operator << ( bool value );
103 TestResult &operator << ( Json::Int64 value );
104 TestResult &operator << ( Json::UInt64 value );
107 TestResult &addToLastFailure( const std::string &message );
132 void run( TestResult &result )
    [all...]
jsontest.cpp 74 // class TestResult
77 TestResult::TestResult()
90 TestResult::setTestName( const std::string &name )
95 TestResult &
96 TestResult::addFailure( const char *file, unsigned int line,
124 TestResult::addFailureInfo( const char *file, unsigned int line,
139 TestResult &
140 TestResult::popPredicateContext()
161 TestResult::failed() cons
    [all...]
  /external/chromium_org/tools/telemetry/telemetry/unittest/
progress_reporter.py 47 """TestSuite that can delegate start and stop calls to a TestResult object."""
60 result = TestResult(progress_reporters)
73 class TestResult(unittest.TestResult):
75 super(TestResult, self).__init__()
84 super(TestResult, self).startTest(test)
93 super(TestResult, self).startTestRun()
98 super(TestResult, self).stopTest(test)
107 super(TestResult, self).stopTestRun()
112 super(TestResult, self).addError(test, err
    [all...]
  /external/chromium_org/base/test/
gtest_xml_util.h 17 struct TestResult;
46 std::vector<TestResult>* results,
  /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/chromium_org/third_party/icu/source/test/perf/leperf/
xmlreader.h 21 TestResult *expected);
  /external/icu/icu4c/source/test/perf/leperf/
xmlreader.h 21 TestResult *expected);
  /external/chromium_org/chrome/browser/ui/webui/
history_ui_unittest.cc 12 struct TestResult {
24 TestResult* test_results,
41 const TestResult& correct_result) {
55 TestResult test_data[] = {
72 TestResult test_data[] = {
88 TestResult test_data[] = {
114 TestResult test_data[] = {
  /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) {

Completed in 465 milliseconds

1 2 3 4 5 6 7 8 910