HomeSort by relevance Sort by last modified time
    Searched refs:Reporter (Results 26 - 50 of 401) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/
Context.java 33 Reporter reporter(); method in interface:Context
  /external/mockito/src/org/mockito/internal/verification/checkers/
MissingInvocationChecker.java 10 import org.mockito.exceptions.Reporter;
19 private final Reporter reporter; field in class:MissingInvocationChecker
23 this(new InvocationsFinder(), new Reporter());
26 MissingInvocationChecker(InvocationsFinder finder, Reporter reporter) {
28 this.reporter = reporter;
40 reporter.argumentsAreDifferent(smartPrinter.getWanted(), smartPrinter.getActual(), similar.getLocation());
42 reporter.wantedButNotInvoked(wanted, invocations)
    [all...]
NonGreedyNumberOfInvocationsInOrderChecker.java 8 import org.mockito.exceptions.Reporter;
22 private final Reporter reporter; field in class:NonGreedyNumberOfInvocationsInOrderChecker
26 this(new InvocationsFinder(), new Reporter(), new InvocationMarker());
29 NonGreedyNumberOfInvocationsInOrderChecker(InvocationsFinder finder, Reporter reporter, InvocationMarker marker ) {
31 this.reporter = reporter;
41 reporter.tooLittleActualInvocationsInOrder(new Discrepancy(wantedCount, actualCount), wanted, lastLocation );
NumberOfInvocationsChecker.java 10 import org.mockito.exceptions.Reporter;
20 private final Reporter reporter; field in class:NumberOfInvocationsChecker
25 this(new Reporter(), new InvocationsFinder());
28 NumberOfInvocationsChecker(Reporter reporter, InvocationsFinder finder) {
29 this.reporter = reporter;
39 reporter.tooLittleActualInvocations(new Discrepancy(wantedCount, actualCount), wanted, lastInvocation);
42 reporter.neverWantedButInvoked(wanted, firstUndesired);
    [all...]
NumberOfInvocationsInOrderChecker.java 10 import org.mockito.exceptions.Reporter;
21 private final Reporter reporter; field in class:NumberOfInvocationsInOrderChecker
26 this(new InvocationsFinder(), new Reporter());
29 NumberOfInvocationsInOrderChecker(InvocationsFinder finder, Reporter reporter) {
31 this.reporter = reporter;
41 reporter.tooLittleActualInvocationsInOrder(new Discrepancy(wantedCount, actualCount), wanted, lastInvocation);
44 reporter.tooManyActualInvocationsInOrder(wantedCount, actualCount, wanted, firstUndesired)
    [all...]
MissingInvocationInOrderChecker.java 10 import org.mockito.exceptions.Reporter;
21 private final Reporter reporter; field in class:MissingInvocationInOrderChecker
25 this(new InvocationsFinder(), new Reporter());
28 MissingInvocationInOrderChecker(InvocationsFinder finder, Reporter reporter) {
30 this.reporter = reporter;
57 reporter.argumentsAreDifferent(smartPrinter.getWanted(), smartPrinter.getActual(), similar.getLocation());
59 reporter.wantedButNotInvoked(wanted)
    [all...]
  /external/objenesis/tck/src/org/objenesis/tck/
Reporter.java 34 public interface Reporter {
  /external/skia/tests/
GpuRectanizerTest.cpp 21 static void test_rectanizer_basic(skiatest::Reporter* reporter, GrRectanizer* rectanizer) {
22 REPORTER_ASSERT(reporter, kWidth == rectanizer->width());
23 REPORTER_ASSERT(reporter, kHeight == rectanizer->height());
27 REPORTER_ASSERT(reporter, rectanizer->addRect(50, 50, &loc));
28 REPORTER_ASSERT(reporter, rectanizer->percentFull() > 0.0f);
30 REPORTER_ASSERT(reporter, rectanizer->percentFull() == 0.0f);
33 static void test_rectanizer_inserts(skiatest::Reporter*,
47 static void test_skyline(skiatest::Reporter* reporter, const SkTDArray<SkISize>& rects)
    [all...]
PathOpsThreadedCommon.h 18 class Reporter;
29 skiatest::Reporter* fReporter;
35 PathOpsThreadedTestRunner(skiatest::Reporter* reporter) : fReporter(reporter) {}
43 skiatest::Reporter* fReporter;
PathOpsSimplifyTest.cpp 11 static void testLine1(skiatest::Reporter* reporter, const char* filename) {
17 testSimplify(reporter, path, filename);
20 static void testLine1x(skiatest::Reporter* reporter, const char* filename) {
27 testSimplify(reporter, path, filename);
58 static void testLine2(skiatest::Reporter* reporter, const char* filename) {
62 testSimplify(reporter, path, filename);
65 static void testLine2x(skiatest::Reporter* reporter, const char* filename)
    [all...]
  /external/google-breakpad/src/common/mac/
macho_reader.h 77 class Reporter {
79 // Create a reporter that attributes problems to |filename|.
80 explicit Reporter(const string &filename) : filename_(filename) { }
82 virtual ~Reporter() { }
102 // Create a fat binary file reader that uses |reporter| to report problems.
103 explicit FatReader(Reporter *reporter) : reporter_(reporter) { }
141 Reporter *reporter_;
235 class Reporter {
    [all...]
  /external/autotest/server/cros/dynamic_suite/
reporting_unittest.py 77 self._orig_project_name = reporting.Reporter._project_name
79 # We want to have some data so that the Reporter doesn't fail at
81 reporting.Reporter._project_name = 'project'
85 reporting.Reporter._project_name = self._orig_project_name
95 self.mox.StubOutWithMock(reporting.Reporter, 'find_issue_by_marker')
102 reporting.Reporter.find_issue_by_marker(mox.IgnoreArg()).AndReturn(
107 bug_id, bug_count = reporting.Reporter().report(self._get_failure())
119 self.mox.StubOutWithMock(reporting.Reporter, 'find_issue_by_marker')
130 reporting.Reporter.find_issue_by_marker(mox.IgnoreArg()).AndReturn(
136 bug_id, bug_count = reporting.Reporter().report(self._get_failure()
    [all...]
  /external/mockito/src/org/mockito/internal/configuration/injection/filter/
FinalMockCandidateFilter.java 7 import org.mockito.exceptions.Reporter;
34 new Reporter().cannotInjectDependency(field, matchingMock, e);
  /external/mockito/src/org/mockito/internal/invocation/
MatchersBinder.java 9 import org.mockito.exceptions.Reporter;
35 new Reporter().invalidUseOfMatchers(expectedMatchersSize, lastMatchers);
  /external/mockito/src/org/mockito/internal/matchers/
CapturingMatcher.java 13 import org.mockito.exceptions.Reporter;
37 new Reporter().noArgumentValueWasCaptured();
  /external/mockito/src/org/mockito/internal/verification/
VerificationDataImpl.java 9 import org.mockito.exceptions.Reporter;
41 new Reporter().cannotVerifyToString();
NoMoreInteractions.java 10 import org.mockito.exceptions.Reporter;
24 new Reporter().noMoreInteractionsWanted(unverified, (List) data.getAllInvocations());
33 new Reporter().noMoreInteractionsWantedInOrder(unverified);
Only.java 9 import org.mockito.exceptions.Reporter;
21 private final Reporter reporter = new Reporter(); field in class:Only
30 reporter.noMoreInteractionsWanted(unverified, (List) invocations);
32 reporter.wantedButNotInvoked(wantedMatcher);
  /external/testng/src/test/java/test/hook/
HookSuccess599Test.java 6 import org.testng.Reporter;
41 Reporter.log("output from hook test.verify");
HookSuccessTest.java 6 import org.testng.Reporter;
41 Reporter.log("output from hook test.verify");
  /external/mockito/src/org/mockito/internal/stubbing/answers/
AnswersValidator.java 7 import org.mockito.exceptions.Reporter;
13 private Reporter reporter = new Reporter(); field in class:AnswersValidator
44 new Reporter().wrongTypeOfArgumentToReturn(invocation, methodInfo.printMethodReturnType(),
53 reporter.cannotCallRealMethodOnInterface();
59 reporter.onlyVoidMethodsCanBeSetToDoNothing();
65 reporter.cannotStubVoidMethodWithAReturnValue(methodInfo.getMethodName());
69 reporter.wrongTypeOfReturnValue(methodInfo.printMethodReturnType(), "null", methodInfo.getMethodName());
73 reporter.wrongTypeOfReturnValue(methodInfo.printMethodReturnType(), answer.printReturnType(), methodInfo.ge (…)
    [all...]
ReturnsArgumentAt.java 7 import org.mockito.exceptions.Reporter;
66 new Reporter().invalidArgumentRangeAtIdentityAnswerCreationTime();
77 new Reporter().invalidArgumentPositionRangeAtInvocationTime(invocation,
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/
BaseJavadocNodeScanner.java 21 import com.google.currysrc.api.process.Reporter;
40 Reporter reporter = context.reporter(); local
44 visit(reporter, javadoc, rewrite);
49 protected abstract void visit(Reporter reporter, Javadoc javadoc, ASTRewrite rewrite);
BaseModifyCommentScanner.java 21 import com.google.currysrc.api.process.Reporter;
40 Reporter reporter = context.reporter(); local
45 String newCommentText = processComment(reporter, comment, commentText);
60 protected abstract String processComment(Reporter reporter, Comment commentNode,
  /external/mockito/src/org/mockito/internal/stubbing/
StubberImpl.java 7 import org.mockito.exceptions.Reporter;
20 private final Reporter reporter = new Reporter(); field in class:StubberImpl
26 reporter.nullPassedToWhenMethod();
29 reporter.notAMockPassedToWhenMethod();

Completed in 202 milliseconds

12 3 4 5 6 7 8 91011>>