@@ -86,15 +86,15 @@ utplsql run "my/Username"/"myP@ssword"@connectstring
86
86
#### Options
87
87
```
88
88
-p=suite_path(s) - A suite path or a comma separated list of suite paths for unit test to be executed.
89
- The path(s) can be in one of the following formats:
89
+ (--path) The path(s) can be in one of the following formats:
90
90
schema[.package[.procedure]]
91
91
schema:suite[.suite[.suite][...]][.procedure]
92
92
Both formats can be mixed in the list.
93
93
If only schema is provided, then all suites owner by that schema are executed.
94
94
If -p is omitted, the current schema is used.
95
95
96
96
-f=format - A reporter to be used for reporting.
97
- If no -f option is provided, the default ut_documentation_reporter is used.
97
+ (--format) If no -f option is provided, the default ut_documentation_reporter is used.
98
98
See reporters command for possible values
99
99
-o=output - Defines file name to save the output from the specified reporter.
100
100
If defined, the output is not displayed on screen by default. This can be changed with the -s parameter.
@@ -119,12 +119,14 @@ utplsql run "my/Username"/"myP@ssword"@connectstring
119
119
-name_subexpression=subexpression_number
120
120
121
121
-c - If specified, enables printing of test results in colors as defined by ANSICONSOLE standards.
122
- Works only on reporeters that support colors (ut_documentation_reporter).
122
+ (--color) Works only on reporeters that support colors (ut_documentation_reporter).
123
123
124
- --failure-exit-code - Override the exit code on failure, defaults to 1. You can set it to 0 to always exit with a success status.
124
+ -fcode=code - Override the exit code on failure, defaults to 1. You can set it to 0 to always exit with a success status.
125
+ (--failure-exit-code)
125
126
126
127
-scc - If specified, skips the compatibility-check with the version of the database framework.
127
- If you skip compatibility-check, CLI will expect the most actual framework version
128
+ (--skip- If you skip compatibility-check, CLI will expect the most actual framework version
129
+ compatibility-check)
128
130
129
131
-include=pckg_list - Comma-separated object list to include in the coverage report.
130
132
Format: [schema.]package[,[schema.]package ...].
@@ -135,13 +137,16 @@ utplsql run "my/Username"/"myP@ssword"@connectstring
135
137
See coverage reporting options in framework documentation.
136
138
137
139
-q - Does not output the informational messages normally printed to console.
138
- Default: false
140
+ (--quiet) Default: false
139
141
140
142
-d - Outputs a load of debug information to console
141
- Default: false
143
+ (--debug) Default: false
142
144
143
- -t - Sets the timeout in minutes after which the cli will abort.
144
- Default 60
145
+ -t=timeInMinutes - Sets the timeout in minutes after which the cli will abort.
146
+ (--timeout) Default 60
147
+
148
+ -dbout - Enables DBMS_OUTPUT in the TestRunner-Session
149
+ (--dbms_output) Default: false
145
150
```
146
151
147
152
Parameters -f, -o, -s are correlated. That is parameters -o and -s are controlling outputs for reporter specified by the preceding -f parameter.
@@ -214,13 +219,19 @@ UT_COVERALLS_REPORTER:
214
219
Designed for [Coveralls](https://coveralls.io/).
215
220
JSON format conforms with specification: https://docs.coveralls.io/api-introduction
216
221
222
+ UT_DEBUG_REPORTER:
223
+ No description available
224
+
217
225
UT_DOCUMENTATION_REPORTER:
218
226
A textual pretty-print of unit test results (usually use for console output)
219
227
Provides additional properties lvl and failed
220
228
221
229
UT_JUNIT_REPORTER:
222
230
Provides outcomes in a format conforming with JUnit 4 and above as defined in: https://gist.github.com/kuzuha/232902acab1344d6b578
223
231
232
+ UT_REALTIME_REPORTER:
233
+ Provides test results in a XML format, for clients such as SQL Developer interested in showing progressing details.
234
+
224
235
UT_SONAR_TEST_REPORTER:
225
236
Generates a JSON report providing detailed information on test execution.
226
237
Designed for [SonarQube](https://about.sonarqube.com/) to report test execution.
0 commit comments