HomeSort by relevance Sort by last modified time
    Searched refs:Runner (Results 51 - 75 of 101) sorted by null

1 23 4 5

  /external/junit-params/src/main/java/junitparams/internal/
InstanceFrameworkMethod.java 6 import org.junit.runner.Description;
7 import org.junit.runner.Runner;
8 import org.junit.runner.notification.RunListener;
9 import org.junit.runner.notification.RunNotifier;
34 * {@link Runner#getDescription()} and {@link RunListener}.
  /cts/common/device-side/nativetesthelper/src/com/android/gtestrunner/
GtestRunner.java 21 import org.junit.runner.Description;
22 import org.junit.runner.Runner;
23 import org.junit.runner.manipulation.Filter;
24 import org.junit.runner.manipulation.Filterable;
25 import org.junit.runner.manipulation.NoTestsRemainException;
26 import org.junit.runner.notification.RunNotifier;
29 * Custom Runner that implements a bridge between JUnit and GTest.
31 * Use this Runner in a @RunWith annotation together with a @TargetLibrary
36 public class GtestRunner extends Runner implements Filterable
    [all...]
  /external/junit/src/main/java/junit/framework/
JUnit4TestAdapter.java 6 import org.junit.runner.Describable;
7 import org.junit.runner.Description;
8 import org.junit.runner.Request;
9 import org.junit.runner.Runner;
10 import org.junit.runner.manipulation.Filter;
11 import org.junit.runner.manipulation.Filterable;
12 import org.junit.runner.manipulation.NoTestsRemainException;
13 import org.junit.runner.manipulation.Sortable;
14 import org.junit.runner.manipulation.Sorter
    [all...]
  /external/junit/src/main/java/org/junit/internal/runners/
ErrorReportingRunner.java 7 import org.junit.runner.Description;
8 import org.junit.runner.Runner;
9 import org.junit.runner.notification.Failure;
10 import org.junit.runner.notification.RunNotifier;
13 public class ErrorReportingRunner extends Runner {
JUnit4ClassRunner.java 11 import org.junit.runner.Description;
12 import org.junit.runner.Runner;
13 import org.junit.runner.manipulation.Filter;
14 import org.junit.runner.manipulation.Filterable;
15 import org.junit.runner.manipulation.NoTestsRemainException;
16 import org.junit.runner.manipulation.Sortable;
17 import org.junit.runner.manipulation.Sorter;
18 import org.junit.runner.notification.Failure;
19 import org.junit.runner.notification.RunNotifier
    [all...]
  /external/mockito/src/main/java/org/mockito/junit/
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;
28 * Mockito JUnit Runner keeps tests clean and improves debugging experience.
31 * Runner is compatible with JUnit 4.4 and higher and adds following behavior:
36 * Similar to JUnit rules, the runner also reports stubbing argument mismatches as console warning
150 private final InternalRunner runner; field in class:MockitoJUnitRunner
    [all...]
  /external/mockito/src/main/java/org/mockito/runners/
ConsoleSpammingMockitoJUnitRunner.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.Failure;
13 import org.junit.runner.notification.RunListener;
14 import org.junit.runner.notification.RunNotifier;
24 * @deprecated as of 2.1.0. Use the {@link org.mockito.junit.MockitoJUnitRunner} runner instea
33 private final InternalRunner runner; field in class:ConsoleSpammingMockitoJUnitRunner
    [all...]
VerboseMockitoJUnitRunner.java 8 import org.junit.runner.Description;
9 import org.junit.runner.Runner;
10 import org.junit.runner.manipulation.Filter;
11 import org.junit.runner.manipulation.Filterable;
12 import org.junit.runner.manipulation.NoTestsRemainException;
13 import org.junit.runner.notification.Failure;
14 import org.junit.runner.notification.RunListener;
15 import org.junit.runner.notification.RunNotifier;
22 * @deprecated as of 2.1.0. Use the {@link org.mockito.junit.MockitoJUnitRunner} runner instea
30 private final InternalRunner runner; field in class:VerboseMockitoJUnitRunner
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/unittests/tools/llvm-exegesis/X86/
SnippetGeneratorTest.cpp 54 SnippetGeneratorTest() : Runner(State) {}
58 auto ProtoOrError = Runner.generatePrototype(Opcode);
63 BenchmarkRunner Runner;
249 InstructionInstance II(Runner.createInstruction(llvm::X86::ADD16ri));
254 const auto RegsToDef = Runner.computeRegsToDef(Snippet);
265 InstructionInstance Mov(Runner.createInstruction(llvm::X86::MOV64ri));
272 InstructionInstance Add(Runner.createInstruction(llvm::X86::ADD64rr));
280 const auto RegsToDef = Runner.computeRegsToDef(Snippet);
  /external/vogar/src/vogar/target/junit/
JUnitTargetRunner.java 20 import org.junit.runner.JUnitCore;
21 import org.junit.runner.Runner;
22 import org.junit.runner.manipulation.NoTestsRemainException;
23 import org.junit.runner.manipulation.Sorter;
63 Runner runner = builder.safeRunnerForClass(testClass); local
64 if (runner == null) {
65 throw new IllegalStateException("Cannot create runner for: " + testClass.getName());
70 DESCRIPTION_SORTER.apply(runner);
    [all...]
  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/
TestRunnerSequenceTest.java 17 import org.junit.runner.Result;
18 import org.junit.runner.RunWith;
19 import org.junit.runner.notification.Failure;
20 import org.junit.runner.notification.RunNotifier;
58 assertNoFailures(run(new Runner(SimpleTest.class)));
75 assertNoFailures(run(new Runner(SimpleTest.class) {
103 RobolectricTestRunner robolectricTestRunner = new Runner(SimpleTest.class) {
126 private Result run(Runner runner) throws InitializationError {
130 runner.run(notifier)
    [all...]
  /external/vogar/src/vogar/target/junit/junit3/
TestCaseRunnerFactory.java 28 import org.junit.runner.Description;
29 import org.junit.runner.Runner;
60 public class TestCaseRunnerFactory implements TestCaseFactory<Runner, DescribableStatement> {
88 public Runner createSuite(
  /external/tensorflow/tensorflow/core/common_runtime/
executor.h 82 // RunAsync() dispatches closures to "runner". Typically, "runner"
101 typedef std::function<void(Closure)> Runner;
102 Runner runner = nullptr; member in struct:tensorflow::Executor::Args