Home
last modified time | relevance | path

Searched refs:reporters (Results 1 – 25 of 2082) sorted by relevance

12345678910>>...84

/dports/devel/R-cran-testthat/testthat/tests/testthat/_snaps/
H A Dreporter-progress.md7 x | 1 0 | reporters/error-setup
14 4. g() reporters/error-setup.R:1:5
15 5. h() reporters/error-setup.R:2:5
53 x | 11 0 | reporters/fail-many
142 v | 7 | reporters/successes
153 v | 7 | reporters/successes
181 1. f() reporters/backtraces.R:6:2
182 2. g() reporters/backtraces.R:4:7
195 5. g() reporters/backtraces.R:16:7
283 v | 2 0 | reporters/skips
[all …]
H A Dreporter-summary.md3 reporters/tests:
33 1. f() reporters/tests.R:17:2
42 1. f() reporters/tests.R:31:2
43 2. g() reporters/tests.R:27:7
44 3. h() reporters/tests.R:28:7
50 reporters/tests:
80 1. f() reporters/tests.R:17:2
89 1. f() reporters/tests.R:31:2
90 2. g() reporters/tests.R:27:7
91 3. h() reporters/tests.R:28:7
[all …]
H A Dreporter-check.md11 1. f() reporters/tests.R:49:2
26 1. \-f() reporters/tests.R:17:2
27 2. \-testthat::expect_true(FALSE) reporters/tests.R:16:7
34 1. \-f() reporters/tests.R:31:2
35 2. \-g() reporters/tests.R:27:7
36 3. \-h() reporters/tests.R:28:7
62 1. f() reporters/tests.R:49:2
77 1. \-f() reporters/tests.R:17:2
85 1. \-f() reporters/tests.R:31:2
86 2. \-g() reporters/tests.R:27:7
[all …]
/dports/devel/cdash/CDash-2-2-3/tests/kwtest/simpletest/
H A Dscorer.php635 private $reporters = array(); variable in MultipleReporter
643 $this->reporters[] = $reporter;
654 for ($i = 0; $i < count($this->reporters); $i++) {
655 $this->reporters[$i]->makeDry($is_dry);
668 for ($i = 0; $i < count($this->reporters); $i++) {
669 if (! $this->reporters[$i]->getStatus()) {
789 $this->reporters[$i]->paintPass($message);
800 $this->reporters[$i]->paintFail($message);
812 $this->reporters[$i]->paintError($message);
834 $this->reporters[$i]->paintSkip($message);
[all …]
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/eclipse.pde.ui/apitools/org.eclipse.pde.api.tools.tests/src/org/eclipse/pde/api/tools/search/tests/
H A DTestCompositeSearchReporter.java35 ArrayList<IApiSearchReporter> reporters = new ArrayList<>(2); field in TestCompositeSearchReporter
40 if(reporters != null) { in TestCompositeSearchReporter()
41 for (int i = 0; i < reporters.length; i++) { in TestCompositeSearchReporter()
42 if(!this.reporters.contains(reporters[i])) { in TestCompositeSearchReporter()
43 if(reporters[i] instanceof TestReporter){ in TestCompositeSearchReporter()
46 this.reporters.add(reporters[i]); in TestCompositeSearchReporter()
57 if(this.testreporteridx > this.reporters.size()) { in reportNotSearched()
62 for (int i = 0; i < this.reporters.size(); i++) { in reportNotSearched()
66 this.reporters.get(i).reportNotSearched(elements); in reportNotSearched()
72 if(this.testreporteridx > this.reporters.size()) { in reportResults()
[all …]
/dports/devel/R-cran-testthat/testthat/R/
H A Dreporter-multi.R11 reporters = list(), field in MultiReporter
13 initialize = function(reporters = list()) { argument
16 self$reporters <- reporters
20 o_apply(self$reporters, "start_reporter")
23 o_apply(self$reporters, "start_file", filename)
26 o_apply(self$reporters, "start_context", context)
35 o_apply(self$reporters, "end_test", context, test)
38 o_apply(self$reporters, "end_context", context)
41 o_apply(self$reporters, "end_reporter")
44 o_apply(self$reporters, "end_file")
[all …]
/dports/www/py-turbogears2/TurboGears2-2.3.12/tg/
H A Derror.py78 reporters = []
81 from backlash.tracing.reporters.mail import EmailReporter
82 reporters.append(EmailReporter(**errorware))
85 from backlash.tracing.reporters.sentry import SentryReporter
86 reporters.append(SentryReporter(**errorware))
95 app, reporters,
122 reporters = []
125 from backlash.tracing.reporters.mail import EmailReporter
126 reporters.append(EmailReporter(**errorware))
130 reporters.append(SentryReporter(**errorware))
[all …]
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/github.com/smartystreets/goconvey/convey/reporting/
H A Dreporter.go14 type reporters struct{ collection []Reporter } struct
16 func (self *reporters) BeginStory(s *StoryReport) { self.foreach(func(r Reporter) { r.BeginStory(s)… argument
17 func (self *reporters) Enter(s *ScopeReport) { self.foreach(func(r Reporter) { r.Enter(s) }) } argument
18 func (self *reporters) Report(a *AssertionResult) { self.foreach(func(r Reporter) { r.Report(a) }) } argument
19 func (self *reporters) Exit() { self.foreach(func(r Reporter) { r.Exit() }) } argument
20 func (self *reporters) EndStory() { self.foreach(func(r Reporter) { r.EndStory() })… argument
22 func (self *reporters) Write(contents []byte) (written int, err error) { argument
29 func (self *reporters) foreach(action func(Reporter)) { argument
35 func NewReporters(collection ...Reporter) *reporters {
36 self := new(reporters)
/dports/net-mgmt/mysqld_exporter/mysqld_exporter-0.12.1/vendor/github.com/smartystreets/goconvey/convey/reporting/
H A Dreporter.go14 type reporters struct{ collection []Reporter } argument
16 func (self *reporters) BeginStory(s *StoryReport) { self.foreach(func(r Reporter) { r.BeginStory(s)… argument
17 func (self *reporters) Enter(s *ScopeReport) { self.foreach(func(r Reporter) { r.Enter(s) }) } argument
18 func (self *reporters) Report(a *AssertionResult) { self.foreach(func(r Reporter) { r.Report(a) }) } argument
19 func (self *reporters) Exit() { self.foreach(func(r Reporter) { r.Exit() }) } argument
20 func (self *reporters) EndStory() { self.foreach(func(r Reporter) { r.EndStory() })… argument
22 func (self *reporters) Write(contents []byte) (written int, err error) { argument
29 func (self *reporters) foreach(action func(Reporter)) { argument
35 func NewReporters(collection ...Reporter) *reporters {
36 self := new(reporters)
/dports/net-im/tut/tut-0.0.17/vendor/github.com/smartystreets/goconvey/convey/reporting/
H A Dreporter.go14 type reporters struct{ collection []Reporter } struct
16 func (self *reporters) BeginStory(s *StoryReport) { self.foreach(func(r Reporter) { r.BeginStory(s)… argument
17 func (self *reporters) Enter(s *ScopeReport) { self.foreach(func(r Reporter) { r.Enter(s) }) } argument
18 func (self *reporters) Report(a *AssertionResult) { self.foreach(func(r Reporter) { r.Report(a) }) } argument
19 func (self *reporters) Exit() { self.foreach(func(r Reporter) { r.Exit() }) } argument
20 func (self *reporters) EndStory() { self.foreach(func(r Reporter) { r.EndStory() })… argument
22 func (self *reporters) Write(contents []byte) (written int, err error) { argument
29 func (self *reporters) foreach(action func(Reporter)) { argument
35 func NewReporters(collection ...Reporter) *reporters {
36 self := new(reporters)
/dports/security/vault/vault-1.8.2/vendor/github.com/hashicorp/vic/vendor/github.com/smartystreets/goconvey/convey/reporting/
H A Dreporter.go14 type reporters struct{ collection []Reporter } struct
16 func (self *reporters) BeginStory(s *StoryReport) { self.foreach(func(r Reporter) { r.BeginStory(s)… argument
17 func (self *reporters) Enter(s *ScopeReport) { self.foreach(func(r Reporter) { r.Enter(s) }) } argument
18 func (self *reporters) Report(a *AssertionResult) { self.foreach(func(r Reporter) { r.Report(a) }) } argument
19 func (self *reporters) Exit() { self.foreach(func(r Reporter) { r.Exit() }) } argument
20 func (self *reporters) EndStory() { self.foreach(func(r Reporter) { r.EndStory() })… argument
22 func (self *reporters) Write(contents []byte) (written int, err error) { argument
29 func (self *reporters) foreach(action func(Reporter)) { argument
35 func NewReporters(collection ...Reporter) *reporters {
36 self := new(reporters)
/dports/security/snowflake-tor/snowflake-ead5a960d7fa19dc890ccbfc0765c5ab6629eaa9/vendor/github.com/smartystreets/goconvey/convey/reporting/
H A Dreporter.go14 type reporters struct{ collection []Reporter } argument
16 func (self *reporters) BeginStory(s *StoryReport) { self.foreach(func(r Reporter) { r.BeginStory(s)… argument
17 func (self *reporters) Enter(s *ScopeReport) { self.foreach(func(r Reporter) { r.Enter(s) }) } argument
18 func (self *reporters) Report(a *AssertionResult) { self.foreach(func(r Reporter) { r.Report(a) }) } argument
19 func (self *reporters) Exit() { self.foreach(func(r Reporter) { r.Exit() }) } argument
20 func (self *reporters) EndStory() { self.foreach(func(r Reporter) { r.EndStory() })… argument
22 func (self *reporters) Write(contents []byte) (written int, err error) { argument
29 func (self *reporters) foreach(action func(Reporter)) { argument
35 func NewReporters(collection ...Reporter) *reporters {
36 self := new(reporters)
/dports/security/vuls/vuls-0.13.7/vendor/moul.io/http2curl/vendor/github.com/smartystreets/goconvey/convey/reporting/
H A Dreporter.go14 type reporters struct{ collection []Reporter } argument
16 func (self *reporters) BeginStory(s *StoryReport) { self.foreach(func(r Reporter) { r.BeginStory(s)… argument
17 func (self *reporters) Enter(s *ScopeReport) { self.foreach(func(r Reporter) { r.Enter(s) }) } argument
18 func (self *reporters) Report(a *AssertionResult) { self.foreach(func(r Reporter) { r.Report(a) }) } argument
19 func (self *reporters) Exit() { self.foreach(func(r Reporter) { r.Exit() }) } argument
20 func (self *reporters) EndStory() { self.foreach(func(r Reporter) { r.EndStory() })… argument
22 func (self *reporters) Write(contents []byte) (written int, err error) { argument
29 func (self *reporters) foreach(action func(Reporter)) { argument
35 func NewReporters(collection ...Reporter) *reporters {
36 self := new(reporters)
/dports/www/aquatone/aquatone-1.7.0/vendor/github.com/moul/http2curl/vendor/github.com/smartystreets/goconvey/convey/reporting/
H A Dreporter.go14 type reporters struct{ collection []Reporter } argument
16 func (self *reporters) BeginStory(s *StoryReport) { self.foreach(func(r Reporter) { r.BeginStory(s)… argument
17 func (self *reporters) Enter(s *ScopeReport) { self.foreach(func(r Reporter) { r.Enter(s) }) } argument
18 func (self *reporters) Report(a *AssertionResult) { self.foreach(func(r Reporter) { r.Report(a) }) } argument
19 func (self *reporters) Exit() { self.foreach(func(r Reporter) { r.Exit() }) } argument
20 func (self *reporters) EndStory() { self.foreach(func(r Reporter) { r.EndStory() })… argument
22 func (self *reporters) Write(contents []byte) (written int, err error) { argument
29 func (self *reporters) foreach(action func(Reporter)) { argument
35 func NewReporters(collection ...Reporter) *reporters {
36 self := new(reporters)
/dports/dns/dnscrypt-proxy2/dnscrypt-proxy-2.1.1/vendor/github.com/smartystreets/goconvey/convey/reporting/
H A Dreporter.go14 type reporters struct{ collection []Reporter } argument
16 func (self *reporters) BeginStory(s *StoryReport) { self.foreach(func(r Reporter) { r.BeginStory(s)… argument
17 func (self *reporters) Enter(s *ScopeReport) { self.foreach(func(r Reporter) { r.Enter(s) }) } argument
18 func (self *reporters) Report(a *AssertionResult) { self.foreach(func(r Reporter) { r.Report(a) }) } argument
19 func (self *reporters) Exit() { self.foreach(func(r Reporter) { r.Exit() }) } argument
20 func (self *reporters) EndStory() { self.foreach(func(r Reporter) { r.EndStory() })… argument
22 func (self *reporters) Write(contents []byte) (written int, err error) { argument
29 func (self *reporters) foreach(action func(Reporter)) { argument
35 func NewReporters(collection ...Reporter) *reporters {
36 self := new(reporters)
/dports/www/writefreely/writefreely-0.13.1/vendor/github.com/smartystreets/goconvey/convey/reporting/
H A Dreporter.go14 type reporters struct{ collection []Reporter } struct
16 func (self *reporters) BeginStory(s *StoryReport) { self.foreach(func(r Reporter) { r.BeginStory(s)… argument
17 func (self *reporters) Enter(s *ScopeReport) { self.foreach(func(r Reporter) { r.Enter(s) }) } argument
18 func (self *reporters) Report(a *AssertionResult) { self.foreach(func(r Reporter) { r.Report(a) }) } argument
19 func (self *reporters) Exit() { self.foreach(func(r Reporter) { r.Exit() }) } argument
20 func (self *reporters) EndStory() { self.foreach(func(r Reporter) { r.EndStory() })… argument
22 func (self *reporters) Write(contents []byte) (written int, err error) { argument
29 func (self *reporters) foreach(action func(Reporter)) { argument
35 func NewReporters(collection ...Reporter) *reporters {
36 self := new(reporters)
/dports/sysutils/terraform/terraform-1.0.11/vendor/github.com/smartystreets/goconvey/convey/reporting/
H A Dreporter.go14 type reporters struct{ collection []Reporter } struct
16 func (self *reporters) BeginStory(s *StoryReport) { self.foreach(func(r Reporter) { r.BeginStory(s)… argument
17 func (self *reporters) Enter(s *ScopeReport) { self.foreach(func(r Reporter) { r.Enter(s) }) } argument
18 func (self *reporters) Report(a *AssertionResult) { self.foreach(func(r Reporter) { r.Report(a) }) } argument
19 func (self *reporters) Exit() { self.foreach(func(r Reporter) { r.Exit() }) } argument
20 func (self *reporters) EndStory() { self.foreach(func(r Reporter) { r.EndStory() })… argument
22 func (self *reporters) Write(contents []byte) (written int, err error) { argument
29 func (self *reporters) foreach(action func(Reporter)) { argument
35 func NewReporters(collection ...Reporter) *reporters {
36 self := new(reporters)
/dports/net/goreplay/goreplay-1.2.0/vendor/github.com/smartystreets/goconvey/convey/reporting/
H A Dreporter.go14 type reporters struct{ collection []Reporter } argument
16 func (self *reporters) BeginStory(s *StoryReport) { self.foreach(func(r Reporter) { r.BeginStory(s)… argument
17 func (self *reporters) Enter(s *ScopeReport) { self.foreach(func(r Reporter) { r.Enter(s) }) } argument
18 func (self *reporters) Report(a *AssertionResult) { self.foreach(func(r Reporter) { r.Report(a) }) } argument
19 func (self *reporters) Exit() { self.foreach(func(r Reporter) { r.Exit() }) } argument
20 func (self *reporters) EndStory() { self.foreach(func(r Reporter) { r.EndStory() })… argument
22 func (self *reporters) Write(contents []byte) (written int, err error) { argument
29 func (self *reporters) foreach(action func(Reporter)) { argument
35 func NewReporters(collection ...Reporter) *reporters {
36 self := new(reporters)
/dports/databases/mongodb36/mongodb-src-r3.6.23/src/mongo/gotools/src/github.com/mongodb/mongo-tools/vendor/github.com/smartystreets/goconvey/convey/reporting/
H A Dreporter.go14 type reporters struct{ collection []Reporter } struct
16 func (self *reporters) BeginStory(s *StoryReport) { self.foreach(func(r Reporter) { r.BeginStory(s)… argument
17 func (self *reporters) Enter(s *ScopeReport) { self.foreach(func(r Reporter) { r.Enter(s) }) } argument
18 func (self *reporters) Report(a *AssertionResult) { self.foreach(func(r Reporter) { r.Report(a) }) } argument
19 func (self *reporters) Exit() { self.foreach(func(r Reporter) { r.Exit() }) } argument
20 func (self *reporters) EndStory() { self.foreach(func(r Reporter) { r.EndStory() })… argument
22 func (self *reporters) Write(contents []byte) (written int, err error) { argument
29 func (self *reporters) foreach(action func(Reporter)) { argument
35 func NewReporters(collection ...Reporter) *reporters {
36 self := new(reporters)
/dports/databases/mongodb42-tools/mongo-tools-r4.2.17/vendor/github.com/smartystreets/goconvey/convey/reporting/
H A Dreporter.go14 type reporters struct{ collection []Reporter } argument
16 func (self *reporters) BeginStory(s *StoryReport) { self.foreach(func(r Reporter) { r.BeginStory(s)… argument
17 func (self *reporters) Enter(s *ScopeReport) { self.foreach(func(r Reporter) { r.Enter(s) }) } argument
18 func (self *reporters) Report(a *AssertionResult) { self.foreach(func(r Reporter) { r.Report(a) }) } argument
19 func (self *reporters) Exit() { self.foreach(func(r Reporter) { r.Exit() }) } argument
20 func (self *reporters) EndStory() { self.foreach(func(r Reporter) { r.EndStory() })… argument
22 func (self *reporters) Write(contents []byte) (written int, err error) { argument
29 func (self *reporters) foreach(action func(Reporter)) { argument
35 func NewReporters(collection ...Reporter) *reporters {
36 self := new(reporters)
/dports/sysutils/istio/istio-1.6.7/pkg/tracing/
H A Dconfig.go96 reporters := make([]jaeger.Reporter, 0, 3)
108 reporters = append(reporters, jaeger.NewRemoteReporter(trans))
112reporters = append(reporters, jaeger.NewRemoteReporter(transport.NewHTTPTransport(options.JaegerUR…
116 reporters = append(reporters, logger)
120 if len(reporters) == 0 {
123 } else if len(reporters) == 1 {
124 rep = reporters[0]
126 rep = jaeger.NewCompositeReporter(reporters...)
/dports/science/lammps/lammps-stable_29Sep2021/lib/kokkos/containers/unit_tests/
H A DTestErrorReporter.hpp80 EXPECT_EQ(1, reporters[i] % 2); in checkReportersAndReportsAgree()
81 EXPECT_EQ(reporters[i], reports[i].m_data1); in checkReportersAndReportsAgree()
117 std::vector<int> reporters; in TestErrorReporter() local
121 test1.m_errorReporter.getReports(reporters, reports); in TestErrorReporter()
122 checkReportersAndReportsAgree(reporters, reports); in TestErrorReporter()
125 test2.m_errorReporter.getReports(reporters, reports); in TestErrorReporter()
126 checkReportersAndReportsAgree(reporters, reports); in TestErrorReporter()
137 reporters.clear(); in TestErrorReporter()
139 reporters.reserve(num_reports); in TestErrorReporter()
143 reporters.push_back(view_reporters(i)); in TestErrorReporter()
[all …]
/dports/devel/kokkos/kokkos-3.4.01/containers/unit_tests/
H A DTestErrorReporter.hpp80 EXPECT_EQ(1, reporters[i] % 2); in checkReportersAndReportsAgree()
81 EXPECT_EQ(reporters[i], reports[i].m_data1); in checkReportersAndReportsAgree()
117 std::vector<int> reporters; in TestErrorReporter() local
121 test1.m_errorReporter.getReports(reporters, reports); in TestErrorReporter()
122 checkReportersAndReportsAgree(reporters, reports); in TestErrorReporter()
125 test2.m_errorReporter.getReports(reporters, reports); in TestErrorReporter()
126 checkReportersAndReportsAgree(reporters, reports); in TestErrorReporter()
137 reporters.clear(); in TestErrorReporter()
139 reporters.reserve(num_reports); in TestErrorReporter()
143 reporters.push_back(view_reporters(i)); in TestErrorReporter()
[all …]
/dports/science/sparta/sparta-20Oct2021/lib/kokkos/containers/unit_tests/
H A DTestErrorReporter.hpp80 EXPECT_EQ(1, reporters[i] % 2); in checkReportersAndReportsAgree()
81 EXPECT_EQ(reporters[i], reports[i].m_data1); in checkReportersAndReportsAgree()
117 std::vector<int> reporters; in TestErrorReporter() local
121 test1.m_errorReporter.getReports(reporters, reports); in TestErrorReporter()
122 checkReportersAndReportsAgree(reporters, reports); in TestErrorReporter()
125 test2.m_errorReporter.getReports(reporters, reports); in TestErrorReporter()
126 checkReportersAndReportsAgree(reporters, reports); in TestErrorReporter()
137 reporters.clear(); in TestErrorReporter()
139 reporters.reserve(num_reports); in TestErrorReporter()
143 reporters.push_back(view_reporters(i)); in TestErrorReporter()
[all …]
/dports/devel/py-buildbot/buildbot-3.4.1/buildbot/test/integration/
H A Dtest_notifier.py21 from buildbot.reporters.generators.build import BuildStatusGenerator
22 from buildbot.reporters.generators.buildset import BuildSetStatusGenerator
23 from buildbot.reporters.generators.worker import WorkerMissingGenerator
24 from buildbot.reporters.mail import ESMTPSenderFactory
25 from buildbot.reporters.mail import MailNotifier
26 from buildbot.reporters.message import MessageFormatter
27 from buildbot.reporters.message import MessageFormatterMissingWorker
28 from buildbot.reporters.pushover import PushoverNotifier
125 from buildbot.plugins import steps, schedulers, reporters
162 reporters.MailNotifier("bot@foo.com", generators=generators_mail),
[all …]

12345678910>>...84