Module: TestCenter::Helper::HtmlTestReport
- Defined in:
- lib/fastlane/plugin/test_center/helper/html_test_report.rb
Defined Under Namespace
Classes: Report, TestCase, TestSuite
Class Method Summary
collapse
Class Method Details
.error(message) ⇒ Object
11
12
13
14
15
|
# File 'lib/fastlane/plugin/test_center/helper/html_test_report.rb', line 11
def self.error(message)
return if ENV.fetch('COLLATE_HTML_REPORTS_VERBOSITY', 1).to_i.zero?
FastlaneCore::UI.error(message)
end
|
.verbose(message) ⇒ Object
5
6
7
8
9
|
# File 'lib/fastlane/plugin/test_center/helper/html_test_report.rb', line 5
def self.verbose(message)
return if ENV.fetch('COLLATE_HTML_REPORTS_VERBOSITY', 1).to_i.zero?
FastlaneCore::UI.verbose(message)
end
|