OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:testresult
(Results
51 - 75
of
183
) sorted by null
1
2
3
4
5
6
7
8
/cts/suite/pts/hostTests/uihost/src/com/android/pts/uihost/
TaskSwitchingTest.java
35
import com.android.tradefed.result.
TestResult
;
100
Map<TestIdentifier,
TestResult
> details = result.getTestResults();
102
for (Map.Entry<TestIdentifier,
TestResult
> entry : details.entrySet()) {
103
TestResult
res = entry.getValue();
/external/junit/src/junit/framework/
TestFailure.java
10
* @see
TestResult
TestResult.java
10
* A <code>
TestResult
</code> collects the results of executing
18
public class
TestResult
extends Object {
27
public
TestResult
() {
/development/tools/hosttestlib/src/com/android/hosttest/
DeviceTestSuite.java
22
import junit.framework.
TestResult
;
53
public void runTest(Test test,
TestResult
result) {
/frameworks/base/core/java/android/test/
InstrumentationTestSuite.java
23
import junit.framework.
TestResult
;
65
public void runTest(Test test,
TestResult
result) {
/cts/apps/CtsVerifier/src/com/android/cts/verifier/
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/docs/html/sdk/api_diff/16/changes/
junit.framework.TestResult.html
10
junit.framework.
TestResult
74
Class junit.framework.<A HREF="../../../../reference/junit/framework/
TestResult
.html" target="_top"><font size="+2"><code>
TestResult
</code></font></A>
86
<A NAME="junit.framework.
TestResult
.errors_changed()"></A>
87
<nobr><code>Enumeration<TestFailure></code> <A HREF="../../../../reference/junit/framework/
TestResult
.html#errors()" target="_top"><code>errors</code></A>() </nobr>
96
<A NAME="junit.framework.
TestResult
.failures_changed()"></A>
97
<nobr><code>Enumeration<TestFailure></code> <A HREF="../../../../reference/junit/framework/
TestResult
.html#failures()" target="_top"><code>failures</code></A>() </nobr>
/cts/suite/pts/utils/
get_csv_report.py
92
testResult
= doc.getElementsByTagName("
TestResult
")[0]
93
buildInfo =
testResult
.getElementsByTagName("BuildInfo")[0]
106
packages = getChildrenWithTag(
testResult
, "TestPackage")
138
xmls = executeWithResult("find " + reportPath + " -name
testResult
.xml -print")
/cts/tools/utils/
rerun.py
53
testResult
= doc.getElementsByTagName("
TestResult
")[0]
54
packages = getChildrenWithTag(
testResult
, "TestPackage")
/frameworks/base/test-runner/tests/src/android/test/suitebuilder/
InstrumentationTestSuiteBuilderTest.java
27
import junit.framework.
TestResult
;
68
TestResult
result = new
TestResult
();
/external/embunit/inc/
Test.h
38
typedef struct __TestResult
TestResult
;
45
typedef void(*TestRunFunction)(void*,
TestResult
*);
TestListener.h
51
/*typedef struct __TestListner TestListner;*/ /*->
TestResult
.h*/
52
/*typedef struct __TestListner* TestListnerRef;*/ /*->
TestResult
.h*/
/external/embunit/src/
TestRunner.c
39
#include "
TestResult
.h"
42
static
TestResult
result_;
/frameworks/base/tests/RenderScriptTests/tests/src/com/android/rs/test/
shared.rsh
10
}
TestResult
;
11
//
TestResult
*g_results;
/cts/tools/tradefed-host/src/com/android/cts/tradefed/result/
ResultReporter.java
50
.addFormFile("resultXml", "
testResult
.xml.gz", data)
/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/junit/
Common.mk
19
src/junit/framework/
TestResult
.java \
/external/junit/src/org/junit/experimental/results/
ResultMatchers.java
13
* assertThat(
testResult
(HasExpectedException.class), isSuccessful());
/cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
JarHostTest.java
36
import junit.framework.
TestResult
;
181
public void run(
TestResult
junitResult) {
193
private void runTest(TestIdentifier testId, final Test junitTest, final
TestResult
junitResult) {
222
private
TestResult
mJunitResult;
224
TestRunnable(Test junitTest,
TestResult
junitResult) {
/external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
single_test_runner.py
36
from webkitpy.layout_tests.layout_package.test_results import
TestResult
114
# Returns a dummy
TestResult
. We don't have to rebase for reftests.
115
return
TestResult
(self._filename)
138
return
TestResult
(self._filename, failures, driver_output.test_time)
220
return
TestResult
(self._filename, failures, driver_output.test_time)
226
return
TestResult
(self._filename, failures, driver_output.test_time)
285
return
TestResult
(self._filename, failures, total_test_time)
288
return
TestResult
(self._filename, failures, total_test_time)
295
return
TestResult
(self._filename, failures, total_test_time)
result_summary.py
69
"""Add a
TestResult
into the appropriate bin.
72
result:
TestResult
/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/tools/tradefed-host/tests/src/com/android/cts/tradefed/result/
TestResultsTest.java
27
private static final String RESULT_START = "<
TestResult
>";
28
private static final String RESULT_END = "</
TestResult
>";
/external/chromium/chrome/browser/diagnostics/
diagnostics_model.h
20
enum
TestResult
{
54
virtual
TestResult
GetResult() = 0;
Completed in 642 milliseconds
1
2
3
4
5
6
7
8