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

1 2 3 4 5 6 7 8 91011>>

  /external/junit/src/junit/runner/
package-info.java 4 package junit.runner
  /external/junit/src/org/junit/runner/
package-info.java 6 package org.junit.runner
Describable.java 1 package org.junit.runner;
Runner.java 1 package org.junit.runner;
3 import org.junit.runner.notification.RunNotifier;
6 * A <code>Runner</code> runs tests and notifies a {@link org.junit.runner.notification.RunNotifier}
7 * of significant events as it does so. You will need to subclass <code>Runner</code>
8 * when using {@link org.junit.runner.RunWith} to invoke a custom runner. When creating
9 * a custom runner, in addition to implementing the abstract methods here you must
13 * The default runner implementation guarantees that the instances of the test case
14 * class will be constructed immediately before running the test and that the runner
    [all...]
  /external/junit/src/org/junit/runner/manipulation/
package-info.java 2 * Provides classes to {@link org.junit.runner.manipulation.Filter filter} or {@link org.junit.runner.manipulation.Sorter sort} tests.
5 * @see org.junit.runner.Runner
7 package org.junit.runner.manipulation
NoTestsRemainException.java 1 package org.junit.runner.manipulation;
4 * Thrown when a filter removes all tests from a runner.
Sortable.java 1 package org.junit.runner.manipulation;
Filterable.java 1 package org.junit.runner.manipulation;
  /external/junit/src/org/junit/runner/notification/
package-info.java 6 package org.junit.runner.notification
StoppedByUserException.java 1 package org.junit.runner.notification;
7 * @see org.junit.runner.notification.RunNotifier
  /cts/tests/core/runner/src/com/android/cts/core/runner/support/
ExtendedAndroidRunnerBuilder.java 17 package com.android.cts.core.runner.support;
19 import android.support.test.internal.runner.AndroidLogOnlyBuilder;
23 import org.junit.runner.Runner;
37 * @param runnerParams {@link AndroidRunnerParams} that stores common runner parameters
46 public Runner runnerForClass(Class<?> testClass) throws Throwable {
48 Log.d("ExAndRunBuild", "runnerForClass: Searching runner for class " + testClass.getName());
51 Runner runner; local
52 // Give TestNG tests a chance to participate in the Runner search first
    [all...]
package-info.java 18 * Contains all the changes needed to the {@code android.support.test.internal.runner} classes.
20 * <p>As its name suggests {@code android.support.test.internal.runner} are internal classes that
26 package com.android.cts.core.runner.support;
  /external/testng/src/main/java/org/testng/reporters/
ExitCodeListener.java 6 * A very simple <code>ITestListener</code> used by the TestNG runner to
16 public ExitCodeListener(TestNG runner) {
17 super(runner);
  /external/caliper/caliper/src/main/java/com/google/caliper/runner/
CaliperRun.java 17 package com.google.caliper.runner;
TrialSchedulingPolicy.java 15 package com.google.caliper.runner;
ExperimentComponent.java 17 package com.google.caliper.runner;
19 import static com.google.caliper.runner.Running.Benchmark;
TrialFailureException.java 17 package com.google.caliper.runner;
21 * invalidate the trial, but allow the run to continue. Both the runner and individual instruments
  /frameworks/base/test-runner/src/junit/runner/
TestCollector.java 1 package junit.runner;
FailureDetailView.java 1 package junit.runner;
  /external/junit/src/org/junit/internal/requests/
SortingRequest.java 5 import org.junit.runner.Description;
6 import org.junit.runner.Request;
7 import org.junit.runner.Runner;
8 import org.junit.runner.manipulation.Sorter;
20 public Runner getRunner() {
21 Runner runner= fRequest.getRunner(); local
22 new Sorter(fComparator).apply(runner);
23 return runner;
    [all...]
FilterRequest.java 7 import org.junit.runner.Request;
8 import org.junit.runner.Runner;
9 import org.junit.runner.manipulation.Filter;
10 import org.junit.runner.manipulation.NoTestsRemainException;
31 public Runner getRunner() {
33 Runner runner= fRequest.getRunner(); local
34 fFilter.apply(runner);
35 return runner;
    [all...]
  /prebuilts/sdk/current/support/multidex/instrumentation/libs/
android-support-multidex-instrumentation.jar 
  /external/chromium-trace/catapult/telemetry/third_party/webpagereplay/
run_tests 10 runner = test_runner.TestRunner() variable
11 runner.AddDirectory(_WPR_DIR)
12 sys.exit(runner.Main())
  /external/mockito/src/org/mockito/internal/runners/
RunnerImpl.java 7 import org.junit.runner.Description;
8 import org.junit.runner.manipulation.Filterable;
9 import org.junit.runner.notification.RunNotifier;
12 * I'm using this surrogate interface to hide internal Runner implementations.
  /external/mockito/src/org/mockito/runners/
MockitoJUnitRunner.java 7 import org.junit.runner.Description;
8 import org.junit.runner.Runner;
9 import org.junit.runner.manipulation.Filter;
10 import org.junit.runner.manipulation.Filterable;
11 import org.junit.runner.manipulation.NoTestsRemainException;
12 import org.junit.runner.notification.RunNotifier;
23 * Compatible with <b>JUnit 4.4 and higher</b>, this runner adds following behavior:
33 * Runner is completely optional - there are other ways you can get &#064;Mock working, for example by writing a base class.
52 public class MockitoJUnitRunner extends Runner implements Filterable {
54 private final RunnerImpl runner; field in class:MockitoJUnitRunner
    [all...]

Completed in 416 milliseconds

1 2 3 4 5 6 7 8 91011>>