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

1 2 3 4 5 6 7 8 91011>>

  /external/testng/src/test/java/test/
ReporterApiTest.java 3 import org.testng.Reporter;
7 * Make sure we don't remove public API's from Reporter.
15 Reporter.log("foo");
16 Reporter.log("foo", false);
17 Reporter.log("foo", 2);
18 Reporter.log("foo", 2, false);
  /external/skia/tests/
TestUtils.h 16 void test_read_pixels(skiatest::Reporter*,
22 void test_write_pixels(skiatest::Reporter*,
27 void test_copy_from_surface(skiatest::Reporter*, GrContext*,
32 void test_copy_to_surface(skiatest::Reporter*, GrResourceProvider*,
PathOpsExtendedTest.h 19 void (*fun)(skiatest::Reporter*, const char* filename);
24 extern int comparePaths(skiatest::Reporter* reporter, const char* filename,
27 inline int comparePaths(skiatest::Reporter* reporter, const char* filename,
30 return comparePaths(reporter, filename, one, two, bitmap);
35 extern bool testPathOp(skiatest::Reporter* reporter, const SkPath& a, const SkPath& b,
37 extern bool testPathOpCheck(skiatest::Reporter* reporter, const SkPath& a, const SkPath& b
    [all...]
Test.cpp 16 void skiatest::Reporter::bumpTestCount() {}
18 bool skiatest::Reporter::allowExtendedTest() const { return false; }
20 bool skiatest::Reporter::verbose() const { return false; }
  /external/testng/src/test/java/test/simple/
IncludedExcludedSampleTest.java 3 import org.testng.Reporter;
14 Reporter.log("beforeSuite");
19 Reporter.log("beforeTest");
24 Reporter.log("beforeTestClass");
29 Reporter.log("beforeTestMethod");
34 Reporter.log("Child.test1");
39 Reporter.log("Child.test2");
44 Reporter.log("Child.test3");
  /external/testng/src/test/java/test/tmp/
TestNGBug.java 3 import org.testng.Reporter;
14 Reporter.log("Child.test1");
19 Reporter.log("Child.test2");
24 Reporter.log("Child.test3");
ParamTest.java 3 import org.testng.Reporter;
12 Reporter.log("CALL " + n);
Tn.java 3 import org.testng.Reporter;
22 Reporter.log("M3 WAS CALLED");
  /libcore/luni/src/main/java/libcore/io/
EventLogger.java 24 private static volatile Reporter REPORTER = new DefaultReporter();
27 * Used to replace default Reporter for logging events. Must be non-null.
29 public static void setReporter(Reporter reporter) {
30 if (reporter == null) {
31 throw new NullPointerException("reporter == null");
33 REPORTER = reporter;
37 * Returns non-null Reporter
    [all...]
DropBox.java 26 private static volatile Reporter REPORTER = new DefaultReporter();
29 * Used to replace default Reporter for logging events. Must be non-null.
31 public static void setReporter(Reporter reporter) {
32 if (reporter == null) {
33 throw new NullPointerException("reporter == null");
35 REPORTER = reporter;
39 * Returns non-null Reporter
    [all...]
  /external/testng/src/test/java/test/reports/
ReporterLogSampleTest.java 4 import org.testng.Reporter;
16 Reporter.log("Log from listener");
23 Reporter.log("Log from test method");
ReporterTest.java 12 Reporter.log ("foo");
16 Reporter.log ("bar"); // This line is required. Else the log that was triggered from onStart() would never be
18 Assert.assertTrue (Reporter.getOutput ().size () == 2);
EmailableReportDriver.java 4 import org.testng.Reporter;
24 Reporter.log("Preparing to fail");
29 Reporter.log("step 1");
30 Reporter.log("step 2");
ReporterSampleTest.java 3 import org.testng.Reporter;
26 Reporter.log("IN THE REPORTER: " + p);
ReporterLogTest.java 4 import org.testng.Reporter;
13 * Make sure that Reporter.log() in listeners don't get discarded.
21 List<String> output = Reporter.getOutput();
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/
Reporter.java 23 public interface Reporter {
Context.java 33 Reporter reporter(); method in interface:Context
  /external/mockito/src/test/java/org/mockito/internal/exceptions/
ReporterTest.java 29 throw Reporter.tooLittleActualInvocations(new org.mockito.internal.reporting.Discrepancy(1, 2), new InvocationBuilder().toInvocation(), null);
34 throw Reporter.invocationListenerDoesNotAcceptNullParameters();
40 throw Reporter.noMoreInteractionsWanted(invocation_with_bogus_default_answer, Collections.<VerificationAwareInvocation>emptyList());
46 throw Reporter.noMoreInteractionsWantedInOrder(invocation_with_bogus_default_answer);
52 throw Reporter.invalidArgumentPositionRangeAtInvocationTime(invocation_with_bogus_default_answer, true, 0);
58 throw Reporter.wrongTypeOfArgumentToReturn(invocation_with_bogus_default_answer, "", String.class, 0);
65 throw Reporter.delegatedMethodDoesNotExistOnDelegate(dumb_invocation.getMethod(), mock_with_bogus_default_answer, String.class);
72 throw Reporter.delegatedMethodHasWrongReturnType(dumb_invocation.getMethod(), dumb_invocation.getMethod(), mock_with_bogus_default_answer, String.class);
78 throw Reporter.cannotInjectDependency(someField(), mock_with_bogus_default_answer, new Exception());
  /external/mockito/src/main/java/org/mockito/internal/util/
MockCreationValidator.java 7 import static org.mockito.internal.exceptions.Reporter.cannotMockClass;
8 import static org.mockito.internal.exceptions.Reporter.extraInterfacesCannotContainMockedType;
9 import static org.mockito.internal.exceptions.Reporter.mockedTypeIsInconsistentWithDelegatedInstanceType;
10 import static org.mockito.internal.exceptions.Reporter.mockedTypeIsInconsistentWithSpiedInstanceType;
11 import static org.mockito.internal.exceptions.Reporter.usingConstructorWithFancySerializable;
  /libcore/dalvik/src/main/java/dalvik/system/
CloseGuard.java 118 private static volatile Reporter REPORTER = new DefaultReporter();
159 * Used to replace default Reporter used to warn of CloseGuard
162 public static void setReporter(Reporter reporter) {
163 if (reporter == null) {
164 throw new NullPointerException("reporter == null");
166 REPORTER = reporter;
170 * Returns non-null CloseGuard.Reporter
    [all...]
  /external/autotest/server/cros/dynamic_suite/
reporting_unittest.py 77 self._orig_project_name = reporting.Reporter._project_name
78 self._orig_monorail_server = reporting.Reporter._monorail_server
80 # We want to have some data so that the Reporter doesn't fail at
82 reporting.Reporter._project_name = 'project'
83 reporting.Reporter._monorail_server = 'staging'
87 reporting.Reporter._project_name = self._orig_project_name
88 reporting.Reporter._monorail_server = self._orig_monorail_server
98 self.mox.StubOutWithMock(reporting.Reporter, '_find_issue_by_marker')
106 reporting.Reporter._find_issue_by_marker(mox.IgnoreArg()).AndReturn(
111 bug_id, bug_count = reporting.Reporter().report(self._get_failure()
    [all...]
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/processors/
BaseTagElementNodeScanner.java 18 import com.google.currysrc.api.process.Reporter;
30 @Override protected final void visit(final Reporter reporter, Javadoc javadoc,
35 return visitTagElement(reporter, rewrite, node);
40 protected abstract boolean visitTagElement(Reporter reporter, ASTRewrite rewrite, TagElement tag);
BaseJavadocTagJavadoc.java 19 import com.google.currysrc.api.process.Reporter;
36 @Override protected final void visit(Reporter reporter, Javadoc javadoc, ASTRewrite rewrite) {
ReplaceTextCommentScanner.java 18 import com.google.currysrc.api.process.Reporter;
35 protected String processComment(Reporter reporter, Comment commentNode, String commentText) {
  /external/google-breakpad/src/client/solaris/handler/
minidump_test.cc 43 static void *Reporter(void *) {
66 if (pthread_create(&reporter_thread, NULL, Reporter, NULL) == 0) {

Completed in 602 milliseconds

1 2 3 4 5 6 7 8 91011>>