HomeSort by relevance Sort by last modified time
    Searched refs:Reporter (Results 1 - 25 of 401) 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/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 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...]
  /external/opencv3/modules/core/test/
test_ptr.cpp 48 struct Reporter {
49 Reporter(bool* deleted) : deleted_(deleted)
53 virtual ~Reporter()
59 Reporter(const Reporter&);
60 Reporter& operator = (const Reporter&);
89 Reporter* r = new Reporter(&deleted);
116 Ptr<Reporter> p1(new Reporter(&deleted))
    [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/skia/tests/
PathOpsExtendedTest.h 23 void (*fun)(skiatest::Reporter*, const char* filename);
28 extern int comparePaths(skiatest::Reporter* reporter, const char* filename,
31 inline int comparePaths(skiatest::Reporter* reporter, const char* filename,
34 return comparePaths(reporter, filename, one, two, bitmap);
39 extern bool testPathOp(skiatest::Reporter* reporter, const SkPath& a, const SkPath& b,
41 extern bool testPathOpCheck(skiatest::Reporter* reporter, const SkPath& a, const SkPath& b
    [all...]
Test.cpp 17 void skiatest::Reporter::bumpTestCount() {}
19 bool skiatest::Reporter::allowExtendedTest() const { return false; }
21 bool skiatest::Reporter::verbose() const { return false; }
Test.h 33 class Reporter : SkNoncopyable {
35 virtual ~Reporter() {}
42 #define REPORT_FAILURE(reporter, cond, message) \
43 reporter->reportFailed(skiatest::Failure(__FILE__, __LINE__, cond, message))
45 typedef void (*TestProc)(skiatest::Reporter*, GrContextFactory*);
61 DEF_TEST(TestName, reporter) {
63 REPORTER_ASSERT(reporter, x == 15);
65 REPORTER_ASSERT_MESSAGE(reporter, x == 15, "x should be 15");
68 ERRORF(reporter, "x should be 15, but is %d", x);
86 void RunWithGPUTestContexts(T testFunction, GPUTestContexts contexts, Reporter* reporter
    [all...]
  /libcore/dalvik/src/main/java/dalvik/system/
CloseGuard.java 118 private static volatile Reporter REPORTER = new DefaultReporter();
142 * Used to replace default Reporter used to warn of CloseGuard
145 public static void setReporter(Reporter reporter) {
146 if (reporter == null) {
147 throw new NullPointerException("reporter == null");
149 REPORTER = reporter;
153 * Returns non-null CloseGuard.Reporter
    [all...]
  /external/icu/tools/srcgen/currysrc/src/main/java/com/google/currysrc/api/process/
Reporter.java 23 public interface Reporter {
  /external/mockito/src/org/mockito/internal/util/
MockCreationValidator.java 7 import org.mockito.exceptions.Reporter;
20 new Reporter().cannotMockFinalClass(classToMock);
31 new Reporter().extraInterfacesCannotContainMockedType(classToMock);
41 new Reporter().mockedTypeIsInconsistentWithSpiedInstanceType(classToMock, spiedInstance);
50 new Reporter().mockedTypeIsInconsistentWithDelegatedInstanceType(classToMock, delegatedInstance);
63 new Reporter().serializableWontWorkForObjectsThatDontImplementSerializable(classToMock);
  /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/mockito/src/org/mockito/internal/verification/checkers/
AtLeastXNumberOfInvocationsChecker.java 10 import org.mockito.exceptions.Reporter;
19 Reporter reporter = new Reporter(); field in class:AtLeastXNumberOfInvocationsChecker
29 reporter.tooLittleActualInvocations(new AtLeastDiscrepancy(wantedCount, actualCount), wanted, lastLocation);
  /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) {
  /external/autotest/site_utils/
test_push_unittest.py 19 AUTOFILED_COUNT_2 = '%s2' % reporting.Reporter.AUTOFILED_COUNT
132 self.mox.StubOutWithMock(reporting.Reporter, 'find_issue_by_marker')
133 reporting.Reporter.find_issue_by_marker(mox.IgnoreArg()).AndReturn(
135 reporting.Reporter.find_issue_by_marker(mox.IgnoreArg()).AndReturn(
137 self.mox.StubOutWithMock(reporting.Reporter, 'modify_bug_report')
138 reporting.Reporter.modify_bug_report(mox.IgnoreArg(),
151 self.mox.StubOutWithMock(reporting.Reporter, 'find_issue_by_marker')
152 reporting.Reporter.find_issue_by_marker(mox.IgnoreArg()).AndReturn(
179 self.mox.StubOutWithMock(reporting.Reporter, 'find_issue_by_marker')
180 reporting.Reporter.find_issue_by_marker(mox.IgnoreArg()).AndReturn
    [all...]

Completed in 1386 milliseconds

1 2 3 4 5 6 7 8 91011>>