Class: XCPretty::TestAnything
- Defined in:
- lib/xcpretty/formatters/tap.rb
Constant Summary
Constants inherited from Knock
Constants inherited from Formatter
Formatter::ASCII_ERROR, Formatter::ASCII_WARNING, Formatter::ERROR, Formatter::WARNING
Constants included from FormatMethods
Constants included from ANSI
ANSI::COLORS, ANSI::EFFECT, ANSI::FORMATTED_MATCHER
Instance Attribute Summary collapse
-
#counter ⇒ Object
readonly
Returns the value of attribute counter.
Attributes inherited from Formatter
Attributes included from ANSI
Instance Method Summary collapse
- #format_failing_test(test_suite, test_case, reason, file) ⇒ Object
- #format_passing_test(suite, test_case, time) ⇒ Object
- #format_pending_test(test_suite, test_case) ⇒ Object
- #format_test_summary(executed_message, failures_per_suite) ⇒ Object
-
#initialize(unicode, color) ⇒ TestAnything
constructor
A new instance of TestAnything.
Methods inherited from Knock
Methods inherited from Formatter
#finish, #format_compile_error, #format_compile_warning, #format_duplicate_symbols, #format_error, #format_file_missing_error, #format_ld_warning, #format_other, #format_undefined_symbols, #format_will_not_be_code_signed, #optional_newline, #pretty_format, #use_unicode?
Methods included from FormatMethods
#format_aggregate_target, #format_analyze, #format_analyze_target, #format_build_target, #format_check_dependencies, #format_clean, #format_clean_remove, #format_clean_target, #format_codesign, #format_compile, #format_compile_command, #format_compile_error, #format_compile_storyboard, #format_compile_warning, #format_compile_xib, #format_copy_header_file, #format_copy_plist_file, #format_copy_strings_file, #format_cpresource, #format_duplicate_symbols, #format_error, #format_file_missing_error, #format_generate_dsym, #format_ld_warning, #format_libtool, #format_linking, #format_measuring_test, #format_other, #format_pbxcp, #format_phase_script_execution, #format_phase_success, #format_preprocess, #format_process_info_plist, #format_process_pch, #format_process_pch_command, #format_shell_command, #format_test_run_finished, #format_test_run_started, #format_test_suite_started, #format_tiffutil, #format_touch, #format_undefined_symbols, #format_warning, #format_write_auxiliary_files, #format_write_file
Methods included from ANSI
#ansi_parse, #applied_effects, #colorize?, #cyan, #green, #red, #strip, #white, #yellow
Constructor Details
#initialize(unicode, color) ⇒ TestAnything
Returns a new instance of TestAnything.
7 8 9 10 |
# File 'lib/xcpretty/formatters/tap.rb', line 7 def initialize(unicode, color) super @counter = 0 end |
Instance Attribute Details
#counter ⇒ Object (readonly)
Returns the value of attribute counter.
5 6 7 |
# File 'lib/xcpretty/formatters/tap.rb', line 5 def counter @counter end |
Instance Method Details
#format_failing_test(test_suite, test_case, reason, file) ⇒ Object
17 18 19 20 21 |
# File 'lib/xcpretty/formatters/tap.rb', line 17 def format_failing_test(test_suite, test_case, reason, file) increment_counter "#{FAIL} #{counter} - #{test_case}" + format_failure_diagnostics(test_suite, test_case, reason, file) end |
#format_passing_test(suite, test_case, time) ⇒ Object
12 13 14 15 |
# File 'lib/xcpretty/formatters/tap.rb', line 12 def format_passing_test(suite, test_case, time) increment_counter "#{PASS} #{counter} - #{test_case}" end |
#format_pending_test(test_suite, test_case) ⇒ Object
23 24 25 26 |
# File 'lib/xcpretty/formatters/tap.rb', line 23 def format_pending_test(test_suite, test_case) increment_counter "#{FAIL} #{counter} - #{test_case} # TODO Not written yet" end |
#format_test_summary(executed_message, failures_per_suite) ⇒ Object
28 29 30 |
# File 'lib/xcpretty/formatters/tap.rb', line 28 def format_test_summary(, failures_per_suite) counter > 0 ? "1..#{counter}" : '' end |