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

1 2 3 4

  /external/testng/src/main/java/org/testng/remote/strprotocol/
TestMessage.java 40 public TestMessage(final ITestContext testContext, final boolean isTestStart) {
42 testContext.getSuite().getName(),
43 testContext.getCurrentXmlTest().getName(),
44 testContext.getAllTestMethods().length,
45 testContext.getPassedTests().size(),
46 testContext.getFailedTests().size(),
47 testContext.getSkippedTests().size(),
48 testContext.getFailedButWithinSuccessPercentageTests().size());
  /packages/apps/DocumentsUI/tests/unit/com/android/documentsui/dirlist/
ModelBackedDocumentsAdapterTest.java 44 final Context testContext = TestContext.createStorageTestContext(getContext(), AUTHORITY);
48 DocumentsAdapter.Environment env = new TestEnvironment(testContext);
51 env, new IconHelper(testContext, State.MODE_GRID), new TestFileTypeLookup());
61 private final Context testContext;
71 private TestEnvironment(Context testContext) {
72 this.testContext = testContext;
105 return testContext;
DirectoryAddonsAdapterTest.java 51 final Context testContext = TestContext.createStorageTestContext(getContext(), AUTHORITY);
52 DocumentsAdapter.Environment env = new TestEnvironment(testContext);
57 env, new IconHelper(testContext, State.MODE_GRID), new TestFileTypeLookup()));
144 private final Context testContext;
146 private TestEnvironment(Context testContext) {
147 this.testContext = testContext;
188 return testContext;
  /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);
  /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 {
  /external/deqp/external/vulkancts/modules/vulkan/synchronization/
vktSynchronizationSmokeTests.cpp 553 struct TestContext
582 TestContext (const DeviceInterface& vkd_,
598 ~TestContext()
604 void generateWork (TestContext& testContext)
606 const DeviceInterface& deviceInterface = testContext.vkd;
607 const deUint32 queueFamilyNdx = testContext.queueFamilyIndex;
612 testContext.device,
613 testContext.binaryCollection.get("glslvert"),
617 testContext.device
    [all...]
  /external/testng/src/main/java/org/testng/internal/invokers/
InvokedMethodListenerInvoker.java 35 * @param testContext test context which should be passed to the listener method upon invocation.
39 ITestResult testResult, ITestContext testContext) {
41 m_testContext = testContext;
77 ITestContext testContext);
83 ITestResult testResult, ITestContext testContext) {
91 ITestResult testResult, ITestContext testContext) {
92 listener.beforeInvocation(invokedMethod, testResult, testContext);
99 ITestResult testResult, ITestContext testContext) {
107 ITestResult testResult, ITestContext testContext) {
108 listener.afterInvocation(invokedMethod, testResult, testContext);
    [all...]
  /external/testng/src/test/java/test/reports/
ReporterTest.java 11 @Override public void onStart (ITestContext testContext) {
  /external/testng/src/main/java/org/testng/reporters/
TestHTMLReporter.java 247 public static void generateLog(ITestContext testContext,
259 .append("<title>TestNG: ").append(testContext.getName()).append("</title>\n")
265 Date startDate = testContext.getStartDate();
266 Date endDate = testContext.getEndDate();
269 testContext.getPassedTests().size() +
270 testContext.getFailedButWithinSuccessPercentageTests().size();
271 int failed = testContext.getFailedTests().size();
272 int skipped = testContext.getSkippedTests().size();
277 .append("<h2 align='center'>").append(testContext.getName()).append("</h2>")
284 .append("<td>Started on:</td><td>").append(testContext.getStartDate().toString()).append("</td>\n"
    [all...]
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...]
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();
FailedReporter.java 65 ITestContext testContext = suiteResult.getTestContext();
68 xmlTests.get(testContext.getName()),
69 testContext,
70 testContext.getFailedTests().getAllResults(),
71 testContext.getSkippedTests().getAllResults());
  /external/deqp/modules/glshared/
glsShaderConstExprTests.hpp 34 class TestContext;
70 std::vector<tcu::TestNode*> createTests (tcu::TestContext& testContext,
glsShaderConstExprTests.cpp 75 std::vector<tcu::TestNode*> createTests (tcu::TestContext& testContext,
169 ret.push_back(new ShaderLibraryCase(testContext,
190 ret.push_back(new ShaderLibraryCase(testContext,
223 ret.push_back(new ShaderLibraryCase(testContext,
244 ret.push_back(new ShaderLibraryCase(testContext,
  /external/testng/src/test/java/test/dataprovider/
ParallelDataProviderTest.java 33 public void verifyData1(ITestContext testContext, String n1, Integer n2) {
  /external/conscrypt/openjdk-integ-tests/src/test/java/org/conscrypt/javax/net/ssl/
SSLContextTest.java 617 TestSSLContext testContext = TestSSLContext.create();
618 assertNotNull(testContext);
619 assertNotNull(testContext.clientKeyStore);
620 assertNull(testContext.clientStorePassword);
621 assertNotNull(testContext.serverKeyStore);
622 assertNotNull(testContext.clientKeyManagers);
623 assertNotNull(testContext.serverKeyManagers);
624 if (testContext.clientKeyManagers.length == 0) {
627 if (testContext.serverKeyManagers.length == 0) {
630 assertNotNull(testContext.clientKeyManagers[0])
    [all...]
  /external/skia/tests/
GrContextFactoryTest.cpp 84 REPORTER_ASSERT(reporter, info1.testContext());
92 REPORTER_ASSERT(reporter, info2.testContext());
132 REPORTER_ASSERT(reporter, info3.testContext() != info4.testContext());
137 REPORTER_ASSERT(reporter, info5.testContext());
139 REPORTER_ASSERT(reporter, info5.testContext() != info4.testContext());
  /external/skqp/tests/
GrContextFactoryTest.cpp 84 REPORTER_ASSERT(reporter, info1.testContext());
92 REPORTER_ASSERT(reporter, info2.testContext());
132 REPORTER_ASSERT(reporter, info3.testContext() != info4.testContext());
137 REPORTER_ASSERT(reporter, info5.testContext());
139 REPORTER_ASSERT(reporter, info5.testContext() != info4.testContext());
  /external/skia/tools/gpu/
GrContextFactory.h 160 TestContext* fTestContext;
182 TestContext* testContext() const { return fTestContext; }
192 ContextInfo(GrContextFactory::ContextType type, TestContext* testContext, GrContext* grContext,
194 : fType(type), fTestContext(testContext), fGrContext(grContext), fOptions(options) {}
198 TestContext* fTestContext = nullptr;
  /external/skqp/tools/gpu/
GrContextFactory.h 160 TestContext* fTestContext;
182 TestContext* testContext() const { return fTestContext; }
192 ContextInfo(GrContextFactory::ContextType type, TestContext* testContext, GrContext* grContext,
194 : fType(type), fTestContext(testContext), fGrContext(grContext), fOptions(options) {}
198 TestContext* fTestContext = nullptr;
  /external/testng/src/main/java/org/testng/internal/
IInvoker.java 51 ITestContext testContext);
TestMethodWorker.java 52 ITestContext testContext,
61 m_testContext = testContext;
121 ITestContext testContext)
134 testContext);
298 ITestContext testContext,
307 testContext,
  /external/deqp/external/openglcts/modules/gl/
gl4cSparseBufferTests.hpp 178 AtomicCounterBufferStorageTestCase(const glw::Functions& gl, tcu::TestContext& testContext, glw::GLint page_size,
211 tcu::TestContext& m_testCtx;
238 BufferTextureStorageTestCase(const glw::Functions& gl, deqp::Context& context, tcu::TestContext& testContext,
269 tcu::TestContext& m_testCtx;
289 ClearOpsBufferStorageTestCase(const glw::Functions& gl, tcu::TestContext& testContext, glw::GLint page_size);
312 tcu::TestContext& m_testCtx;
348 CopyOpsBufferStorageTestCase(const glw::Functions& gl, tcu::TestContext& testContext, glw::GLint page_size)
    [all...]
  /frameworks/base/libs/hwui/tests/macrobench/
TestSceneRunner.cpp 21 #include "tests/common/TestContext.h"
115 TestContext testContext;
116 testContext.setRenderOffscreen(opts.renderOffscreen);
121 sp<Surface> surface = testContext.surface();
147 testContext.waitForVsync();
160 testContext.waitForVsync();

Completed in 466 milliseconds

1 2 3 4