@@ -81,7 +81,7 @@ extension TestError: CustomStringConvertible {
81
81
82
82
struct SharedOptions : ParsableArguments {
83
83
@Flag ( name: . customLong( " skip-build " ) ,
84
- help: " Skip building the test target " )
84
+ help: " Skip building the test target. " )
85
85
var shouldSkipBuilding : Bool = false
86
86
87
87
/// The test product to use. This is useful when there are multiple test products
@@ -160,12 +160,12 @@ struct TestCommandOptions: ParsableArguments {
160
160
161
161
/// List the tests and exit.
162
162
@Flag ( name: [ . customLong( " list-tests " ) , . customShort( " l " ) ] ,
163
- help: " Lists test methods in specifier format " )
163
+ help: " Lists test methods in specifier format. " )
164
164
var _deprecated_shouldListTests : Bool = false
165
165
166
166
/// If the path of the exported code coverage JSON should be printed.
167
167
@Flag ( name: [ . customLong( " show-codecov-path " ) , . customLong( " show-code-coverage-path " ) , . customLong( " show-coverage-path " ) ] ,
168
- help: " Print the path of the exported code coverage JSON file " )
168
+ help: " Print the path of the exported code coverage JSON file. " )
169
169
var shouldPrintCodeCovPath : Bool = false
170
170
171
171
var testCaseSpecifier : TestCaseSpecifier {
@@ -180,13 +180,13 @@ struct TestCommandOptions: ParsableArguments {
180
180
var _testCaseSpecifier : String ?
181
181
182
182
@Option ( help: """
183
- Run test cases matching regular expression, Format: <test-target>.<test-case> \
184
- or <test-target>.<test-case>/<test>
183
+ Run test cases that match a regular expression, Format: ' <test-target>.<test-case>' \
184
+ or ' <test-target>.<test-case>/<test>'.
185
185
""" )
186
186
var filter : [ String ] = [ ]
187
187
188
188
@Option ( name: . customLong( " skip " ) ,
189
- help: " Skip test cases matching regular expression, Example: --skip PerformanceTests " )
189
+ help: " Skip test cases that match regular expression, Example: ' --skip PerformanceTests'. " )
190
190
var _testCaseSkip : [ String ] = [ ]
191
191
192
192
/// Path where the xUnit xml file should be generated.
@@ -210,7 +210,7 @@ struct TestCommandOptions: ParsableArguments {
210
210
/// Whether to enable code coverage.
211
211
@Flag ( name: . customLong( " code-coverage " ) ,
212
212
inversion: . prefixedEnableDisable,
213
- help: " Enable code coverage " )
213
+ help: " Enable code coverage. " )
214
214
var enableCodeCoverage : Bool = false
215
215
216
216
/// Configure test output.
0 commit comments