@@ -25,31 +25,31 @@ You need to run the `ut_run.bat` or `ut_run` script from your project's root dir
2525 -f=format - A reporter to be used for reporting.
2626 Available options:
2727 -f=ut_documentation_reporter
28- A textual pretty-print of unit test results (usually use for console output)
28+ A textual pretty-print of unit test results (usually use for console output)
2929 -f=ut_teamcity_reporter
30- A teamcity Unit Test reporter, that can be used to visualize progress of test execution as the job progresses.
30+ A teamcity Unit Test reporter, that can be used to visualize progress of test execution as the job progresses.
3131 -f=ut_xunit_reporter
32- A XUnit xml format (as defined at: http://stackoverflow.com/a/9691131 and at https://gist.github.com/kuzuha/232902acab1344d6b578)
33- Usually used by Continuous Integration servers like Jenkins/Hudson or Teamcity to display test results.
32+ A XUnit xml format (as defined at: http://stackoverflow.com/a/9691131 and at https://gist.github.com/kuzuha/232902acab1344d6b578)
33+ Usually used by Continuous Integration servers like Jenkins/Hudson or Teamcity to display test results.
3434 -f=ut_coverage_html_reporter
35- Generates a HTML coverage report providing summary and detailed information on code coverage.
35+ Generates a HTML coverage report providing summary and detailed information on code coverage.
3636 The html reporter is based on open-source simplecov-html reporter for Ruby.
37- It includes source code of the code that was covered (if possible).
37+ It includes source code of the code that was covered (if possible).
3838 -f=ut_coveralls_reporter
39- Generates a JSON coverage report providing detailed information on code coverage with line numbers.
40- This coverage report is designed to be consumed by cloud services like https://coveralls.io/.
39+ Generates a JSON coverage report providing detailed information on code coverage with line numbers.
40+ This coverage report is designed to be consumed by cloud services like [Coveralls]( https://coveralls.io/) .
4141 -f=ut_coverage_sonar_reporter
42- Generates a JSON coverage report providing detailed information on code coverage with line numbers.
43- This coverage report is designed to be consumed by local services like https://about.sonarqube.com/.
42+ Generates a JSON coverage report providing detailed information on code coverage with line numbers.
43+ This report is designed to be consumed by [SonarQube]( https://about.sonarqube.com/) to report code coverage .
4444 -f=ut_sonar_test_reporter
45- Generates a JSON report providing detailed information on test specifications.
46- This report is designed to be consumed by local services like https://about.sonarqube.com/.
45+ Generates a JSON report providing detailed information on test specifications.
46+ This report is designed to be consumed by [SonarQube]( https://about.sonarqube.com/) to report code coverage .
4747 If no -f option is provided, the ut_documentation_reporter will be used.
4848
4949 -o=output - file name to save the output provided by the reporter.
50- If defined, the output is not displayed on screen by default. This can be changed with the -s parameter.
51- If not defined, then output will be displayed on screen, even if the parameter -s is not specified.
52- If more than one -o parameter is specified for one -f parameter, the last one is taken into consideration.
50+ If defined, the output is not displayed on screen by default. This can be changed with the -s parameter.
51+ If not defined, then output will be displayed on screen, even if the parameter -s is not specified.
52+ If more than one -o parameter is specified for one -f parameter, the last one is taken into consideration.
5353 -s - Forces putting output to to screen for a given -f parameter.
5454 -source_path=path - Source files path to be used by coverage reporters. The path need to be relative to the priject root directory.
5555 -test_path=path - Test files path to be used by coverage reporters. The path need to be relative to the priject root directory.
@@ -60,9 +60,9 @@ You need to run the `ut_run.bat` or `ut_run` script from your project's root dir
6060
6161Parameters -f, -o, -s are correlated. That is parameters -o and -s are defining outputs for -f.
6262
63- Examples of invocation using sqlplus from command line:
63+ Examples of invocation from command line:
6464
65- ` ut_run @ut_run hr/hr@xe -p=hr_test -f=ut_documentation_reporter -o=run.log -s -f=ut_coverage_html_reporter -o=coverage.html -source_path=source `
65+ ` ut_run hr/hr@xe -p=hr_test -f=ut_documentation_reporter -o=run.log -s -f=ut_coverage_html_reporter -o=coverage.html -source_path=source `
6666
6767All Unit tests from schema/package "hr_test" will be be invoked with two reporters:
6868 - ut_documentation_reporter - will output to screen and save output to file "run.log"
0 commit comments