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

1 2 3 4 5 6 7 8 91011>>

  /external/testng/src/main/java/org/testng/
IInvokedMethodListener.java 9 void beforeInvocation(IInvokedMethod method, ITestResult testResult);
11 void afterInvocation(IInvokedMethod method, ITestResult testResult);
IConfigureCallBack.java 20 public void runConfigurationMethod(ITestResult testResult);
IHookCallBack.java 23 public void runTestMethod(ITestResult testResult);
IInvokedMethodListener2.java 13 void beforeInvocation(IInvokedMethod method, ITestResult testResult,
19 void afterInvocation(IInvokedMethod method, ITestResult testResult,
IConfigurable.java 13 public void run(IConfigureCallBack callBack, ITestResult testResult);
IHookable.java 13 * public void run(final IHookCallBack icb, ITestResult testResult) {
19 * icb.callback(testResult);
29 public void run(IHookCallBack callBack, ITestResult testResult);
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
BooleanTest.java 48 public String getResult(gUnitTestResult testResult) {
49 if ( testResult.isLexerTest() ) {
50 if ( testResult.isSuccess() ) return "OK";
53 return testResult.getError();
56 return (testResult.isSuccess())? "OK" : "FAIL";
OutputTest.java 54 public String getResult(gUnitTestResult testResult) {
56 if ( testResult.isSuccess() ) return testResult.getReturned();
59 return testResult.getError();
ReturnTest.java 51 public String getResult(gUnitTestResult testResult) {
52 if ( testResult.isSuccess() ) return testResult.getReturned();
55 return testResult.getError();
  /external/tpm2/
GetTestResult.c 23 out->testResult = CryptGetTestResult(&out->outData);
  /external/testng/src/test/java/test/invokedmethodlistener/
MyListener.java 17 public void afterInvocation(IInvokedMethod method, ITestResult testResult) {
20 suiteStatus = testResult.getStatus();
21 suiteThrowable = testResult.getThrowable();
24 methodStatus = testResult.getStatus();
25 methodThrowable = testResult.getThrowable();
30 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) {
  /external/sl4a/ScriptingLayerForAndroid/src/org/connectbot/util/
EastAsianWidth.java 44 byte[] testResult = new byte[1];
45 measure(testInput, 0, 1, testResult, true);
47 if (testResult[0] == 1)
  /external/testng/src/main/java/org/testng/remote/strprotocol/
RemoteTestListener.java 39 public void onTestStart(ITestResult testResult) {
43 trm= new TestResultMessage(m_suite.getName(), m_xmlTest.getName(), testResult);
46 trm= new TestResultMessage(m_currentTestContext, testResult);
57 public void onTestFailedButWithinSuccessPercentage(ITestResult testResult) {
59 m_sender.sendMessage(new TestResultMessage(m_suite.getName(), m_xmlTest.getName(), testResult));
62 m_sender.sendMessage(new TestResultMessage(m_currentTestContext, testResult));
67 public void onTestFailure(ITestResult testResult) {
69 m_sender.sendMessage(new TestResultMessage(m_suite.getName(), m_xmlTest.getName(), testResult));
72 m_sender.sendMessage(new TestResultMessage(m_currentTestContext, testResult));
77 public void onTestSkipped(ITestResult testResult) {
    [all...]
  /external/testng/src/test/java/test/hook/
HookListener.java 11 public void run(IHookCallBack callBack, ITestResult testResult) {
13 callBack.runTestMethod(testResult);
ConfigurableListener.java 14 public void run(IConfigureCallBack callBack, ITestResult testResult) {
20 callBack.runConfigurationMethod(testResult);
  /external/testng/src/test/java/test/listeners/
LListener.java 11 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) {
16 public void afterInvocation(IInvokedMethod method, ITestResult testResult) {
EndMillisShouldNotBeZeroTest.java 20 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) {
24 public void afterInvocation(IInvokedMethod method, ITestResult testResult) {
25 m_end = testResult.getEndMillis();
  /cts/hostsidetests/appsecurity/test-apps/EphemeralTestApp/EphemeralApp1/src/com/android/cts/ephemeralapp1/
ClientTest.java 51 import com.android.cts.util.TestResult;
88 private final SynchronousQueue<TestResult> mResultQueue = new SynchronousQueue<>();
326 final TestResult testResult = getResult();
337 final TestResult testResult = getResult();
349 final TestResult testResult = getResult();
362 // final TestResult testResult = getResult()
    [all...]
  /external/testng/src/test/java/org/testng/internal/invokers/
InvokedMethodListenerSubtypeTest.java 36 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) {
39 public void afterInvocation(IInvokedMethod method, ITestResult testResult) {
45 public void beforeInvocation(IInvokedMethod method, ITestResult testResult,
49 public void afterInvocation(IInvokedMethod method, ITestResult testResult,
53 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) {
56 public void afterInvocation(IInvokedMethod method, ITestResult testResult) {
  /external/testng/src/main/java/org/testng/reporters/
XMLSuiteResultWriter.java 129 for (ITestResult testResult : sortedResults) {
130 addTestResult(xmlBuffer, testResult);
150 private void addTestResult(XMLStringBuffer xmlBuffer, ITestResult testResult) {
151 Properties attribs = getTestResultAttributes(testResult);
152 attribs.setProperty(XMLReporterConfig.ATTR_STATUS, getStatusString(testResult.getStatus()));
154 addTestMethodParams(xmlBuffer, testResult);
155 addTestResultException(xmlBuffer, testResult);
156 addTestResultOutput(xmlBuffer, testResult);
158 addTestResultAttributes(xmlBuffer, testResult);
177 private Properties getTestResultAttributes(ITestResult testResult) {
    [all...]
  /external/junit-params/src/test/java/junitparams/
MultipleParameterProvidersTest.java 33 Result testResult = JUnitCore.runClasses(CantInitializeWithValueAndMethodProvider.class);
34 assertEquals(1, testResult.getFailureCount());
36 Failure testFailure = testResult.getFailures().iterator().next();
  /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/deqp/framework/common/
tcuTestContext.cpp 55 void TestContext::setTestResult (qpTestResult testResult, const char* description)
57 m_testResult = testResult;
  /external/testng/src/main/java/org/testng/reporters/jq/
BannerPanel.java 17 String testResult = failedCount > 0 ? ", " + pluralize(failedCount, "failed test") : "";
19 + testResult;
  /external/testng/src/test/java/test/enable/
InvokedMethodListener.java 16 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) {
21 public void afterInvocation(IInvokedMethod method, ITestResult testResult) {

Completed in 1252 milliseconds

1 2 3 4 5 6 7 8 91011>>