HomeSort by relevance Sort by last modified time
    Searched defs:testResult (Results 1 - 25 of 216) sorted by null

1 2 3 4 5 6 7 8 9

  /external/tpm2/
GetTestResult_fp.h 14 TPM_RC testResult;
  /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/org/junit/experimental/results/
PrintableResult.java 19 * assertThat(testResult(HasExpectedException.class), isSuccessful());
26 public static PrintableResult testResult(Class<?> type) {
27 return testResult(Request.aClass(type));
33 public static PrintableResult testResult(Request request) {
  /external/testng/src/test/java/test/dependsongroup/
DependsOnGroupsTest.java 28 ITestResult testResult = tla.getPassedTests().get(i);
29 Assert.assertEquals(testResult.getMethod().getMethodName(), expected[i]);
  /external/testng/src/main/java/org/testng/reporters/jq/
BannerPanel.java 17 String testResult = failedCount > 0 ? ", " + pluralize(failedCount, "failed test") : "";
19 + testResult;
  /frameworks/base/core/tests/coretests/src/android/app/activity/
SubActivityTest.java 37 public void testResult() throws Exception {
BroadcastTest.java 272 public void testResult() throws Exception {
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
SensorPowerTestActivity.java 98 PowerTestHostLink.PowerTestResult testResult = mHostLink.run();
103 testResult.passedCount,
104 testResult.skippedCount,
105 testResult.failedCount);
106 Assert.assertEquals(testDetails.getSummary(), 0, testResult.failedCount);
  /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...]
  /cts/common/util/tests/src/com/android/compatibility/common/util/
CaseResultTest.java 50 ITestResult testResult = mResult.getOrCreateResult(METHOD_1);
53 assertTrue("Expected test result", mResult.getResults().contains(testResult));
56 assertEquals("Expected the same result", testResult, testResult2);
61 ITestResult testResult = mResult.getOrCreateResult(METHOD_1);
62 testResult.failed(STACK_TRACE);
63 assertEquals("Expected status to be set", TestStatus.FAIL, testResult.getResultStatus());
64 assertEquals("Expected message to be set", MESSAGE, testResult.getMessage());
65 assertEquals("Expected stack to be set", STACK_TRACE, testResult.getStackTrace());
66 testResult = mResult.getOrCreateResult(METHOD_2);
67 testResult.passed(null)
    [all...]
  /external/deqp/framework/common/
tcuTestSessionExecutor.cpp 231 const qpTestResult testResult = m_testCtx.getTestResult();
234 DE_ASSERT(testResult != QP_TEST_RESULT_LAST);
237 m_testCtx.getLog().endCase(testResult, testResultDesc);
240 print(" %s (%s)\n", qpGetTestResultName(testResult), testResultDesc);
243 switch (testResult)
253 if (terminateAfter || testResult == QP_TEST_RESULT_RESOURCE_ERROR)
  /external/antlr/antlr-3.4/gunit-maven-plugin/src/main/java/org/antlr/mojo/antlr3/
GUnitExecuteMojo.java 308 Result testResult = new Result();
309 testResult.tests = executor.numOfTest;
310 testResult.failures = executor.numOfFailure;
311 testResult.invalids = executor.numOfInvalidInput;
313 System.out.println( testResult.render() );
315 runningResults.add( testResult );
  /cts/hostsidetests/devicepolicy/src/com/android/cts/devicepolicy/
BaseDevicePolicyTest.java 24 import com.android.ddmlib.testrunner.TestResult;
25 import com.android.ddmlib.testrunner.TestResult.TestStatus;
282 for (Map.Entry<TestIdentifier, TestResult> testEntry :
284 TestResult testResult = testEntry.getValue();
285 CLog.d("Test " + testEntry.getKey() + ": " + testResult.getStatus());
286 if (testResult.getStatus() != TestStatus.PASSED) {
287 CLog.d(testResult.getStackTrace());
  /external/testng/src/main/java/org/testng/internal/
Invoker.java 168 ITestResult testResult= new TestResult(testClass,
195 handleConfigurationSkip(tm, testResult, configurationAnnotation, currentTestMethod, instance, suite);
209 testResult.setParameters(parameters);
213 runConfigurationListeners(testResult, true /* before */);
216 parameters, testResult);
219 testResult.setEndMillis(System.currentTimeMillis());
220 runConfigurationListeners(testResult, false /* after */);
239 handleConfigurationFailure(ex, tm, testResult, configurationAnnotation, currentTestMethod, instance, suite);
241 handleConfigurationFailure(ex, tm, testResult, configurationAnnotation, currentTestMethod, instance, suite)
    [all...]
Parameters.java 75 ITestResult testResult)
88 currentTestMeth, ctx, testResult),
95 ITestResult testResult) {
107 result = testResult;
131 params.context, params.testResult);
499 public ITestResult testResult;
529 testResult = tr;
  /libcore/luni/src/test/java/libcore/java/lang/
ThreadTest.java 175 String testResult = nativeTestNativeThreadNames();
177 if (testResult != null) {
178 fail(testResult);
  /external/testng/src/main/java/org/testng/reporters/
EmailableReporter2.java 141 for (TestResult testResult : suiteResult.getTestResults()) {
142 int passedTests = testResult.getPassedTestCount();
143 int skippedTests = testResult.getSkippedTestCount();
144 int failedTests = testResult.getFailedTestCount();
145 long duration = testResult.getDuration();
156 .append(Utils.escapeHtml(testResult.getTestName()))
164 writeTableData(testResult.getIncludedGroups());
165 writeTableData(testResult.getExcludedGroups());
216 for (TestResult testResult : suiteResult.getTestResults())
    [all...]
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/helpers/
PowerTestHostLink.java 245 String testResult = request.substring(REQUEST_SET_TEST_RESULT.length());
246 response = handleSetTestResultCmd(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...]
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitExecutor.java 112 StringTemplate testResultST = getTemplateGroup().getInstanceOf("testResult");
266 gUnitTestResult testResult = new gUnitTestResult(false, err.toString(), true);
267 testResult.setError(err.toString());
268 return testResult;
386 gUnitTestResult testResult = new gUnitTestResult(false, err.toString());
387 testResult.setError(err.toString());
388 return testResult;
554 gUnitTestResult testResult = new gUnitTestResult(false, err.toString());
555 testResult.setError(err.toString());
556 return testResult;
    [all...]
  /external/lz4/programs/
frametest.c 200 int testResult = 0;
353 return testResult;
356 testResult = 1;
381 unsigned testResult = 0;
533 return testResult;
536 testResult = 1;
  /frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
CodecTest.java 806 String testResult;
  /external/deqp/external/vulkancts/modules/vulkan/api/
vktApiCommandBuffersTests.cpp     [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktOpaqueTypeIndexingTests.cpp 566 tcu::TestStatus testResult = tcu::TestStatus::pass("Pass");
591 if (testResult.getCode() == QP_TEST_RESULT_PASS)
592 testResult = tcu::TestStatus::fail("Got invalid lookup result");
640 if (!isOk && testResult.getCode() == QP_TEST_RESULT_PASS)
641 testResult = tcu::TestStatus::fail("Got invalid lookup result");
664 if (testResult.getCode() == QP_TEST_RESULT_PASS)
665 testResult = tcu::TestStatus::fail("Inconsistent lookup results");
671 return testResult;
861 tcu::TestStatus testResult = tcu::TestStatus::pass("Pass");
909 if (testResult.getCode() == QP_TEST_RESULT_PASS
    [all...]

Completed in 954 milliseconds

1 2 3 4 5 6 7 8 9