OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:testResult
(Results
1 - 22
of
22
) sorted by null
/hardware/ril/mock-ril/src/js/
simulated_radio_tests.js
202
var
testResult
= simulatedRadio.rilRequestHangUpForegroundResumeBackground(req);
223
if (
testResult
.rilErrCode == RIL_E_GENERIC_FAILURE) {
259
var
testResult
= new Object();
260
testResult
.rilErrCode = RIL_E_SUCCESS;
261
testResult
= simulatedRadio.rilRequestConference(req);
262
if (
testResult
.rilErrCode == RIL_E_GENERIC_FAILURE) {
270
testResult
.rilErrCode = RIL_E_SUCCESS;
271
testResult
= simulatedRadio.rilRequestConference(req);
272
if (
testResult
.rilErrCode == RIL_E_GENERIC_FAILURE) {
280
testResult
.rilErrCode = RIL_E_SUCCESS
[
all
...]
/cts/tools/host/src/com/android/cts/
CtsTestResult.java
20
import junit.framework.
TestResult
;
150
* @param
testResult
The result in the form of JUnit test result.
153
public void setResult(
TestResult
testResult
) {
157
if ((
testResult
!= null) && (
testResult
.failureCount() > 0 ||
testResult
.errorCount() > 0)) {
159
Enumeration<TestFailure> failures =
testResult
.failures();
165
Enumeration<TestFailure> errors =
testResult
.errors();
HostSideOnlyTest.java
21
import junit.framework.
TestResult
;
51
TestResult
testResult
= null;
53
testResult
= runner.runTest(controller.getJarPath(),
67
mResult.setResult(
testResult
);
TestSessionBuilder.java
424
CtsTestResult
testResult
= loadTestResult(testNode);
440
if (
testResult
!= null) {
441
test.addResult(
testResult
);
479
CtsTestResult
testResult
= null;
482
testResult
= new CtsTestResult(result, failedMessage, stackTrace);
487
return
testResult
;
Test.java
273
public TimeOutTask(final Test
testResult
) {
274
mTest =
testResult
;
/cts/apps/CtsVerifier/src/com/android/cts/verifier/
AbstractTestListActivity.java
58
TestResult
testResult
=
TestResult
.fromActivityResult(resultCode, data);
59
mAdapter.setTestResult(
testResult
);
TestListAdapter.java
126
public void setTestResult(
TestResult
testResult
) {
127
new SetTestResultTask(
testResult
.getName(),
testResult
.getResult(),
128
testResult
.getDetails()).execute();
184
int
testResult
= cursor.getInt(2);
186
results.put(testName,
testResult
);
282
:
TestResult
.TEST_RESULT_NOT_EXECUTED;
295
|| (mTestResults.get(item.testName) !=
TestResult
.TEST_RESULT_PASSED))) {
318
int
testResult
= getTestResult(position)
[
all
...]
TestResult.java
29
public class
TestResult
{
55
private static Intent createResult(Activity activity, int
testResult
, String testName,
59
data.putExtra(TEST_RESULT,
testResult
);
65
* Convert the test activity's result into a {@link
TestResult
}. Only meant to be used by
68
static
TestResult
fromActivityResult(int resultCode, Intent data) {
72
return new
TestResult
(name, result, details);
75
private
TestResult
(String name, int result, String details) {
TestResultsReport.java
142
private String getTestResultString(int
testResult
) {
143
switch (
testResult
) {
144
case
TestResult
.TEST_RESULT_PASSED:
147
case
TestResult
.TEST_RESULT_FAILED:
150
case
TestResult
.TEST_RESULT_NOT_EXECUTED:
154
throw new IllegalArgumentException("Unknown test result: " +
testResult
);
TestResultsProvider.java
50
/** Integer test result corresponding to constants in {@link
TestResult
}. */
51
static final String COLUMN_TEST_RESULT = "
testresult
";
204
static void setTestResult(Context context, String testName, int
testResult
,
207
values.put(TestResultsProvider.COLUMN_TEST_RESULT,
testResult
);
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/stress/
MediaPlayerStressTest.java
110
boolean
testResult
= true;
136
testResult
= false;
148
assertTrue("testMediaSamples",
testResult
);
/frameworks/base/core/tests/coretests/src/android/app/activity/
SubActivityTest.java
37
public void
testResult
() throws Exception {
BroadcastTest.java
271
public void
testResult
() throws Exception {
/frameworks/base/test-runner/src/android/test/
AndroidTestRunner.java
27
import junit.framework.
TestResult
;
36
private
TestResult
mTestResult;
130
protected
TestResult
createTestResult() {
134
return new
TestResult
();
149
public
TestResult
getTestResult() {
157
public void runTest(
TestResult
testResult
) {
158
mTestResult =
testResult
;
/frameworks/base/media/tests/MediaFrameworkTest/src/com/android/mediaframeworktest/functional/
CodecTest.java
800
String
testResult
;
/prebuilt/common/tradefed/
tradefed-prebuilt.jar
/prebuilt/sdk/11/
android.jar
/prebuilt/sdk/12/
android.jar
/prebuilt/sdk/14/
android.jar
/prebuilt/sdk/4/
android.jar
/prebuilt/sdk/6/
android.jar
/prebuilt/sdk/9/
android.jar
Completed in 618 milliseconds