TestSuite provides a reference to the test suite file (either .yaml or .textproto)
(path string)
| 290 | |
| 291 | // TestSuite provides a reference to the test suite file (either .yaml or .textproto) |
| 292 | func TestSuite(path string) TestRunnerOption { |
| 293 | return func(tr *TestRunner) (*TestRunner, error) { |
| 294 | tr.TestSuiteFilePath = path |
| 295 | return tr, nil |
| 296 | } |
| 297 | } |
| 298 | |
| 299 | // DefaultTestSuiteParser returns a TestRunnerOption which configures the test runner with |
| 300 | // the default test suite parser. |
no outgoing calls
no test coverage detected