(arg)
| 152 | }); |
| 153 | |
| 154 | function getTestCases(arg) { |
| 155 | const withArguments = createTestCommand().arguments(arg); |
| 156 | const withArgument = createTestCommand().argument(arg); |
| 157 | const withAddArgument = createTestCommand().addArgument( |
| 158 | new commander.Argument(arg), |
| 159 | ); |
| 160 | return [ |
| 161 | ['.arguments', withArguments], |
| 162 | ['.argument', withArgument], |
| 163 | ['.addArgument', withAddArgument], |
| 164 | ]; |
| 165 | } |
| 166 | }); |
no test coverage detected