Closed mdwhatcott closed 4 years ago
Resolves #25 and #27
Summary of changes to the public contract:
RunSequential
Run
Options.AllSequential()
Options.SequentialFixture()
Options.SequentialTestCases()
Options.LongRunning
Options.SkipFixture
Resolves #25 and #27
Summary of changes to the public contract:
RunSequential
is deprecatedRun
now accepts variadic functional options as its last argument. Those options are as follows:Options.AllSequential()
- Passing this to gunit is equivalent to the now deprecatedRun
function.Options.SequentialFixture()
- Prevent corresponding fixture from being run in parallelOptions.SequentialTestCases()
- Prevent test cases on a fixture from being run in parallel with each other.Options.LongRunning
- Mark every test in a fixture as long-runningOptions.SkipFixture
- Mark every test in a fixture as skipped.