HomeSort by relevance Sort by last modified time
    Searched full:testresult (Results 51 - 75 of 588) sorted by null

1 23 4 5 6 7 8 91011>>

  /cts/tools/tradefed-host/tests/src/com/android/cts/tradefed/result/
TestSummaryXmlTest.java 32 "<TestResult>" +
34 "</TestResult>";
37 "<TestResult>" +
39 "</TestResult>";
  /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/testng/src/test/java/test/hook/
ConfigurableFailureTest.java 15 public void run(IConfigureCallBack callBack, ITestResult testResult) {
  /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);
  /external/junit/src/junit/extensions/
ActiveTestSuite.java 5 import junit.framework.TestResult;
33 public void run(TestResult result) {
40 public void runTest(final Test test, final TestResult result) {
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/util/
EastAsianWidth.java 45 byte[] testResult = new byte[1];
46 measure(testInput, 0, 1, testResult, true);
48 if (testResult[0] == 1)
  /external/testng/src/test/java/test/
InvokedMethodNameListener.java 20 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) {
25 public void afterInvocation(IInvokedMethod method, ITestResult testResult) {
26 switch (testResult.getStatus()) {
  /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/testng/src/main/java/org/testng/internal/
MethodInvocationHelper.java 178 * @param testResult
190 final ITestResult testResult) throws Throwable {
209 hookable.run(callback, testResult);
221 Object[] parameterValues, ITestResult testResult)
223 invokeWithTimeout(tm, instance, parameterValues, testResult, null);
227 Object[] parameterValues, ITestResult testResult, IHookable hookable)
229 if (ThreadUtil.isTestNGThread() && testResult.getTestContext().getCurrentXmlTest().getParallel() != XmlSuite.ParallelMode.TESTS) {
232 invokeWithTimeoutWithNoExecutor(tm, instance, parameterValues, testResult, hookable);
234 invokeWithTimeoutWithNewExecutor(tm, instance, parameterValues, testResult, hookable);
239 Object[] parameterValues, ITestResult testResult, IHookable hookable) {
    [all...]
  /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/location/base/
GnssCtsTestResult.java 25 import junit.framework.TestResult;
33 * A wrapper class for a {@link TestResult}.
38 public class GnssCtsTestResult extends TestResult {
40 private final TestResult mWrappedTestResult;
44 public GnssCtsTestResult(Context context, TestResult testResult) {
46 mWrappedTestResult = testResult;
  /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/gdb/darwin-x86/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/gdb/linux-x86/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/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();
  /external/testng/src/main/java/org/testng/junit/
JUnitTestRunner.java 25 import junit.framework.TestResult;
107 org.testng.internal.TestResult tr= recordResults(test, tri);
117 private org.testng.internal.TestResult recordResults(Test test, TestRunInfo tri) {
121 org.testng.internal.TestResult tr= new org.testng.internal.TestResult(tc,
244 * A <code>start</code> implementation that ignores the <code>TestResult</code>
256 public TestResult start(Class testCase, String... methods) {
279 * Creates the TestResult to be used for the test run.
281 protected TestResult createTestResult() {
282 return new TestResult();
    [all...]
  /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{

Completed in 418 milliseconds

1 23 4 5 6 7 8 91011>>