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

1 2

  /build/soong/ui/build/
config_test.go 27 func testContext() Context {
36 ctx := testContext()
108 ctx := testContext()
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
AutoContextTest.java 30 public void testContext() throws Throwable {
DuplicateContextTest.java 30 public void testContext() throws Throwable {
  /frameworks/base/libs/hwui/tests/microbench/
FrameBuilderBench.cpp 26 #include "tests/common/TestContext.h"
97 TestContext testContext;
  /external/testng/src/main/java/org/testng/reporters/
EmailableReporter.java 91 ITestContext testContext = r2.getTestContext();
92 String testName = testContext.getName();
94 resultSummary(suite, testContext.getFailedConfigurations(), testName,
96 resultSummary(suite, testContext.getFailedTests(), testName, "failed",
98 resultSummary(suite, testContext.getSkippedConfigurations(), testName,
100 resultSummary(suite, testContext.getSkippedTests(), testName,
102 resultSummary(suite, testContext.getPassedTests(), testName, "passed",
116 ITestContext testContext = r2.getTestContext();
118 m_out.println("<h1>" + testContext.getName() + "</h1>");
120 resultDetail(testContext.getFailedConfigurations())
    [all...]
FailedReporter.java 65 ITestContext testContext = suiteResult.getTestContext();
68 xmlTests.get(testContext.getName()),
69 testContext,
70 testContext.getFailedTests().getAllResults(),
71 testContext.getSkippedTests().getAllResults());
XMLReporter.java 47 ITestContext testContext = sr.getTestContext();
48 passed += testContext.getPassedTests().size();
49 failed += testContext.getFailedTests().size();
50 skipped += testContext.getSkippedTests().size();
156 ITestContext testContext = result.getValue().getTestContext();
157 Date startDate = testContext.getStartDate();
158 Date endDate = testContext.getEndDate();
  /external/owasp/sanitizer/src/tests/org/owasp/html/
HtmlChangeReporterTest.java 43 final Context testContext = new Context();
51 assertSame(testContext, context);
57 assertSame(testContext, context);
66 renderer, listener, testContext);