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

1 2 34 5 6 7 8 910

  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
GeeTestResultParser.java 96 private TestResult mCurrentTestResult = null;
119 private static class TestResult {
146 * a current stack trace, it returns an error string. Use {@link TestResult#hasStackTrace}
158 /** Provides a more user readable string for TestResult, if possible */
234 * Returns the current TestResult for test in progress, or a new default one.
236 * @return The TestResult for the current test run
238 private TestResult getCurrentTestResult() {
240 mCurrentTestResult = new TestResult();
247 * Clears out the current TestResult.
484 TestResult testResult = getCurrentTestResult()
    [all...]
JarHostTest.java 39 import junit.framework.TestResult;
191 public void run(TestResult junitResult) {
203 private void runTest(TestIdentifier testId, final Test junitTest, final TestResult junitResult) {
235 private TestResult mJunitResult;
237 TestRunnable(Test junitTest, TestResult junitResult) {
  /external/protobuf/gtest/src/
gtest-internal-inl.h 556 TestResult* result() { return &result_; }
557 const TestResult* result() const { return &result_; }
588 TestResult result_;
819 // Returns the TestResult for the test that's currently running, or
820 // the TestResult for the ad hoc test if no test is running.
821 TestResult* current_test_result();
823 // Returns the TestResult for the ad hoc test.
824 const TestResult* ad_hoc_test_result() const { return &ad_hoc_test_result_; }
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
TestListAdapter.java 177 public void setTestResult(TestResult testResult) {
178 new SetTestResultTask(testResult.getName(), testResult.getResult(),
179 testResult.getDetails(), testResult.getReportLog()).execute();
244 int testResult = cursor.getInt(2);
247 results.put(testName, testResult);
351 : TestResult.TEST_RESULT_NOT_EXECUTED;
371 || (mTestResults.get(item.testName) != TestResult.TEST_RESULT_PASSED)))
    [all...]
  /frameworks/base/cmds/uiautomator/library/testrunner-src/com/android/uiautomator/testrunner/
UiAutomatorTestRunner.java 47 import junit.framework.TestResult;
121 TestResult testRunResult = new TestResult();
233 public void print(TestResult result, long runTime, Bundle testOutput);
349 public void print(TestResult result, long runTime, Bundle testOutput) {
379 public void print(TestResult result, long runTime, Bundle testOutput) {
  /external/chromium_org/third_party/skia/tests/
SkpSkGrTest.cpp 67 struct TestResult {
82 TestResult test;
124 TestResult fResult;
376 void TestResult::testOne() {
498 bool fetch(SkFILEStream& reader, TestResult* result) {
549 bool match(const SkString& filename, SkFILEWStream* stream, TestResult* result) {
564 SkTArray<TestResult, true> fResults;
577 SkTArray<TestResult, true> errors;
611 TestResult& result = state.fResult;
648 TestResult::Test(state.fDirsFound[index], state.fFilesFound[index], kEncodeFiles
    [all...]
  /external/skia/tests/
SkpSkGrTest.cpp 67 struct TestResult {
82 TestResult test;
124 TestResult fResult;
378 void TestResult::testOne() {
500 bool fetch(SkFILEStream& reader, TestResult* result) {
551 bool match(const SkString& filename, SkFILEWStream* stream, TestResult* result) {
566 SkTArray<TestResult, true> fResults;
579 SkTArray<TestResult, true> errors;
613 TestResult& result = state.fResult;
650 TestResult::Test(state.fDirsFound[index], state.fFilesFound[index], kEncodeFiles
    [all...]
  /development/testrunner/
am_instrument_parser.py 35 test_results (list of am_output_parser.TestResult)
52 test_result = TestResult(result_block_string)
124 class TestResult(object):
  /external/chromium_org/testing/gtest/test/
gtest_stress_test.cc 119 const TestResult* const result = info->result();
145 const TestResult* const result = info->result();
148 // We have no access to the TestResult's list of properties but we can
  /external/chromium_org/third_party/android_testrunner/
am_instrument_parser.py 35 test_results (list of am_output_parser.TestResult)
52 test_result = TestResult(result_block_string)
124 class TestResult(object):
  /external/gtest/test/
gtest_stress_test.cc 119 const TestResult* const result = info->result();
145 const TestResult* const result = info->result();
148 // We have no access to the TestResult's list of properties but we can
  /external/lldb/test/unittest2/test/
test_runner.py 25 result = unittest2.TestResult()
44 result = unittest2.TestResult()
test_skipping.py 67 result = unittest2.TestResult()
115 result = unittest2.TestResult()
135 result = unittest2.TestResult()
  /ndk/sources/third_party/googletest/googletest/test/
gtest_stress_test.cc 119 const TestResult* const result = info->result();
145 const TestResult* const result = info->result();
148 // We have no access to the TestResult's list of properties but we can
  /external/junit/src/junit/framework/
JUnit4TestAdapter.java 38 public void run(TestResult result) {
JUnit4TestAdapterCache.java 45 public RunNotifier getNotifier(final TestResult result,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
test_runner.py 100 result = unittest.TestResult()
153 class AResult(unittest.TestResult):
169 result = unittest.TestResult()
188 result = unittest.TestResult()
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
test_runner.py 100 result = unittest.TestResult()
153 class AResult(unittest.TestResult):
169 result = unittest.TestResult()
188 result = unittest.TestResult()
  /external/chromium_org/base/test/launcher/
test_launcher.cc 550 void TestLauncher::OnTestFinished(const TestResult& result) {
561 print_snippet = (result.status != TestResult::TEST_SUCCESS);
584 if (result.status == TestResult::TEST_SUCCESS) {
601 } else if (result.status == TestResult::TEST_TIMEOUT) {
603 } else if (result.status == TestResult::TEST_CRASH) {
605 } else if (result.status == TestResult::TEST_SKIPPED) {
607 } else if (result.status == TestResult::TEST_UNKNOWN) {
622 if (result.status == TestResult::TEST_TIMEOUT ||
623 result.status == TestResult::TEST_UNKNOWN) {
    [all...]
  /external/chromium_org/build/android/pylib/utils/
json_results_generator_unittest.py 69 test_results_map[test] = json_results_generator.TestResult(
197 json_results_generator.TestResult(
201 json_results_generator.TestResult('bar.html', elapsed_time=0.0001))
json_results_generator.py 94 class TestResult(object):
139 MODIFIER_TO_CHAR = {TestResult.NONE: PASS_RESULT,
140 TestResult.DISABLED: SKIP_RESULT,
141 TestResult.FAILS: FAIL_RESULT,
142 TestResult.FLAKY: FLAKY_RESULT}
182 test_results_map: A dictionary that maps test_name to TestResult.
343 if test_result.modifier == TestResult.DISABLED:
  /external/junit/src/org/junit/internal/runners/
JUnit38ClassRunner.java 8 import junit.framework.TestResult;
81 TestResult result= new TestResult();
  /frameworks/base/test-runner/tests/src/android/test/suitebuilder/
TestSuiteBuilderTest.java 33 import junit.framework.TestResult;
170 TestResult result = new TestResult();
  /external/chromium_org/testing/gtest/src/
gtest-internal-inl.h 601 // Returns the TestResult for the test that's currently running, or
602 // the TestResult for the ad hoc test if no test is running.
603 TestResult* current_test_result();
605 // Returns the TestResult for the ad hoc test.
606 const TestResult* ad_hoc_test_result() const { return &ad_hoc_test_result_; }
720 // Adds a TestProperty to the current TestResult object when invoked in a
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-internal-inl.h 580 // Returns the TestResult for the test that's currently running, or
581 // the TestResult for the ad hoc test if no test is running.
582 TestResult* current_test_result();
584 // Returns the TestResult for the ad hoc test.
585 const TestResult* ad_hoc_test_result() const { return &ad_hoc_test_result_; }
    [all...]

Completed in 1539 milliseconds

1 2 34 5 6 7 8 910