HomeSort by relevance Sort by last modified time
    Searched full:testresult (Results 26 - 50 of 383) sorted by null

12 3 4 5 6 7 8 91011>>

  /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*/
  /cts/tools/tradefed-host/res/report/
cts_result.xsl 25 <title>Test Report for <xsl:value-of select="TestResult/DeviceInfo/BuildInfo/@build_model" /> - <xsl:value-of select="TestResult/DeviceInfo/BuildInfo/@deviceID"/></title>
42 <h1>Test Report for <xsl:value-of select="TestResult/DeviceInfo/BuildInfo/@build_model"/> -
43 <xsl:value-of select="TestResult/DeviceInfo/BuildInfo/@deviceID"/>
71 <xsl:value-of select="TestResult/DeviceInfo/BuildInfo/@build_model"/>
77 <xsl:value-of select="TestResult/DeviceInfo/BuildInfo/@buildName"/>
83 <xsl:value-of select="TestResult/DeviceInfo/BuildInfo/@build_brand"/>
89 <xsl:value-of select="TestResult/DeviceInfo/BuildInfo/@build_manufacturer"/>
95 <xsl:value-of select="TestResult/DeviceInfo/BuildInfo/@deviceID"/>
101 <xsl:value-of select="TestResult/DeviceInfo/BuildInfo/@buildVersion"/
    [all...]
  /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...]
  /external/junit/src/junit/extensions/
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) {
  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/result/
TestSummaryXmlTest.java 32 "<TestResult>" +
34 "</TestResult>";
37 "<TestResult>" +
39 "</TestResult>";
  /external/embunit/
Android.mk 12 src/TestResult.c \
  /external/junit/src/junit/framework/
JUnit4TestCaseFacade.java 25 public 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/lldb/test/unittest2/test/
test_new_tests.py 16 self.assertIsSubclass(unittest2.TestResult, unittest.TestResult)
20 self.assertIsSubclass(unittest2.TextTestResult, unittest.TestResult)
test_result.py 9 # Note: there are not separate tests for TestResult.wasSuccessful(),
10 # TestResult.errors, TestResult.failures, TestResult.testsRun or
11 # TestResult.shouldStop because these only have meaning in terms of
12 # other TestResult methods.
19 result = unittest2.TestResult()
30 # run should be aborted by setting the TestResult's shouldStop
33 result = unittest2.TestResult()
48 result = unittest2.TestResult()
    [all...]
  /frameworks/base/tests/FrameworkPerf/src/com/android/frameworkperf/
FrameworkPerfTest.java 30 Bundle testResult = new Bundle();
34 testResult.putString(result.name, String.format("%f,%d,%d,%f,%d,%d",
39 getInstrumentation().sendStatus(Activity.RESULT_OK, testResult);
  /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...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
SensorCtsTestResult.java 25 import junit.framework.TestResult;
35 * A wrapper class for a {@link TestResult}.
40 class SensorCtsTestResult extends TestResult {
42 private final TestResult mWrappedTestResult;
46 public SensorCtsTestResult(Context context, TestResult testResult) {
48 mWrappedTestResult = testResult;
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/unittest/test/
test_result.py 11 # Note: there are not separate tests for TestResult.wasSuccessful(),
12 # TestResult.errors, TestResult.failures, TestResult.testsRun or
13 # TestResult.shouldStop because these only have meaning in terms of
14 # other TestResult methods.
21 result = unittest.TestResult()
33 # run should be aborted by setting the TestResult's shouldStop
36 result = unittest.TestResult()
51 result = unittest.TestResult()
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/unittest/test/
test_result.py 11 # Note: there are not separate tests for TestResult.wasSuccessful(),
12 # TestResult.errors, TestResult.failures, TestResult.testsRun or
13 # TestResult.shouldStop because these only have meaning in terms of
14 # other TestResult methods.
21 result = unittest.TestResult()
33 # run should be aborted by setting the TestResult's shouldStop
36 result = unittest.TestResult()
51 result = unittest.TestResult()
    [all...]
  /development/tools/hosttestlib/src/com/android/hosttest/
DeviceTestRunner.java 23 import junit.framework.TestResult;
56 * @return {@link TestResult}
59 public TestResult start(String[] args) throws Exception {
101 TestResult r = aTestRunner.start(args);
120 public TestResult doRun(Test test, boolean wait) {
137 protected TestResult runSingleMethod(String testCase, String method, boolean wait)
  /external/guava/guava-testlib/test/com/google/common/collect/testing/
FeatureSpecificTestSuiteBuilderTest.java 23 import junit.framework.TestResult;
77 TestResult result = new TestResult();
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/
AbstractTestListActivity.java 76 TestResult testResult = TestResult.fromActivityResult(resultCode, data);
77 mAdapter.setTestResult(testResult);
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...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
OutputTest.java 54 public String getResult(gUnitTestResult testResult) {
56 if ( testResult.isSuccess() ) return testResult.getReturned();
59 return testResult.getError();
ReturnTest.java 51 public String getResult(gUnitTestResult testResult) {
52 if ( testResult.isSuccess() ) return testResult.getReturned();
55 return testResult.getError();
  /external/boringssl/src/ssl/test/runner/
test_output.go 31 Tests map[string]testResult `json:"tests"`
35 type testResult struct {
47 Tests: make(map[string]testResult),
56 t.Tests[name] = testResult{
  /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...]

Completed in 1141 milliseconds

12 3 4 5 6 7 8 91011>>