HomeSort by relevance Sort by last modified time
    Searched full:testresult (Results 1 - 25 of 633) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/junit/src/junit/framework/
Test.java 6 * @see TestResult
14 * Runs a test and collects its result in a TestResult instance.
16 public abstract void run(TestResult result);
Protectable.java 6 * @see TestResult
  /external/testng/src/test/java/test/junit/testsetup/
LoggingTestSuite.java 5 import junit.framework.TestResult;
16 public void run( TestResult result )
22 public void runTest( Test test, TestResult result )
  /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/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) {
InvokedMethodListener.java 15 public void beforeInvocation(IInvokedMethod method, ITestResult testResult) {
20 public void afterInvocation(IInvokedMethod method, ITestResult testResult) {
  /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/main/java/org/testng/
IInvokedMethodListener.java 9 void beforeInvocation(IInvokedMethod method, ITestResult testResult);
11 void afterInvocation(IInvokedMethod method, ITestResult testResult);
IInvokedMethodListener2.java 13 void beforeInvocation(IInvokedMethod method, ITestResult testResult,
19 void afterInvocation(IInvokedMethod method, 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/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);
HookSuccess862Test.java 14 public void run(IHookCallBack callBack, ITestResult testResult) {
15 Method method = testResult.getMethod().getConstructorOrMethod().getMethod();
25 callBack.runTestMethod(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();
  /external/clang/test/Sema/
variadic-block.c 32 long testresult = addthem("ii", 10, 20); local
33 if (testresult != 30) {
36 testresult = addthem("idc", 30, 40.0, 'a');
37 if (testresult != (70+'a')) {
  /external/compiler-rt/test/BlocksRuntime/
variadic.c 52 long testresult = addthem("ii", 10, 20); local
53 if (testresult != 30) {
54 printf("got wrong result: %ld\n", testresult);
57 testresult = addthem("idc", 30, 40.0, 'a');
58 if (testresult != (70+'a')) {
59 printf("got different wrong result: %ld\n", testresult);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/location/base/
GnssCtsTestSuite.java 20 import junit.framework.TestResult;
42 public void run(TestResult testResult) {
43 mWrappedTestSuite.run(new GnssCtsTestResult(mContext, testResult));
62 public void runTest(Test test, TestResult testResult) {
63 mWrappedTestSuite.runTest(test, testResult);
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/base/
SensorCtsTestSuite.java 20 import junit.framework.TestResult;
42 public void run(TestResult testResult) {
43 mWrappedTestSuite.run(new SensorCtsTestResult(mContext, testResult));
62 public void runTest(Test test, TestResult testResult) {
63 mWrappedTestSuite.runTest(test, testResult);
  /external/chromium-trace/catapult/telemetry/telemetry/testing/
progress_reporter.py 48 """TestSuite that can delegate start and stop calls to a TestResult object."""
61 result = TestResult(progress_reporters)
74 class TestResult(unittest.TestResult):
76 super(TestResult, self).__init__()
85 super(TestResult, self).startTest(test)
94 super(TestResult, self).startTestRun()
99 super(TestResult, self).stopTest(test)
108 super(TestResult, self).stopTestRun()
113 super(TestResult, self).addError(test, err
    [all...]
  /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/autotest/client/deps/webgl_perf/files/
0002-Always-increment-numberOfResults.patch 16 if (e.data.testResult) {
17 sumOfResults += e.data.testResult;
18 sumOfLogResults += Math.log(e.data.testResult);
  /external/icu/icu4c/source/test/letest/
letest.h 40 struct TestResult
49 typedef struct TestResult TestResult;
  /external/junit/src/junit/extensions/
TestDecorator.java 5 import junit.framework.TestResult;
23 public void basicRun(TestResult result) {
31 public void run(TestResult result) {
  /external/testng/src/main/java/org/testng/internal/invokers/
InvokedMethodListenerInvoker.java 34 * @param testResult test result which should be passed to the listener method upon invocation
39 ITestResult testResult, ITestContext testContext) {
42 m_testResult = testResult;
76 void callMethod(LISTENER_TYPE listener, IInvokedMethod invokedMethod, ITestResult testResult,
83 ITestResult testResult, ITestContext testContext) {
84 listener.beforeInvocation(invokedMethod, testResult);
91 ITestResult testResult, ITestContext testContext) {
92 listener.beforeInvocation(invokedMethod, testResult, testContext);
99 ITestResult testResult, ITestContext testContext) {
100 listener.afterInvocation(invokedMethod, testResult);
    [all...]

Completed in 671 milliseconds

1 2 3 4 5 6 7 8 91011>>