@@ -49,15 +49,9 @@ What follows is the Table of Contents for this README, which also serves as the
4949- [ .Net support] ( #net-support )
5050- [ Testing "Hello world"] ( #testing-hello-world )
5151- [ Running tests] ( #running-tests )
52- - [ ` runTests ` ] ( #runtests )
53- - [ ` runTestsWithArgs ` ] ( #runtestswithargs )
5452 - [ ` runTestsWithCLIArgs ` ] ( #runtestswithcliargs )
55- - [ ` runTestsWithCancel ` ] ( #runtestswithcancel )
56- - [ ` runTestsWithArgsAndCancel ` ] ( #runtestswithargsandcancel )
5753 - [ ` runTestsWithCLIArgsAndCancel ` ] ( #runtestswithcliargsandcancel )
58- - [ ` runTestsInAssembly ` ] ( #runtestsinassembly )
5954 - [ ` runTestsInAssemblyWithCLIArgs ` ] ( #runtestsinassemblywithcliargs )
60- - [ ` runTestsInAssemblyWithCancel ` ] ( #runtestsinassemblywithcancel )
6155 - [ ` runTestsInAssemblyWithCLIArgsAndCancel ` ] ( #runtestsinassemblywithcliargsandcancel )
6256 - [ Filtering with ` filter ` ] ( #filtering-with-filter )
6357 - [ Shuffling with ` shuffle ` ] ( #shuffling-with-shuffle )
@@ -233,57 +227,22 @@ testCase "A simple test" (fun () ->
233227 Expect.equal 4 (2+2) "2+2 should equal 4")
234228```
235229
236- ### ` runTests `
237-
238- Signature ` ExpectoConfig -> Test -> int ` . Runs the passed tests with the passed
239- configuration record. Note: now deprecated please use CLIArgs below.
240-
241- ### ` runTestsWithArgs `
242-
243- Signature ` ExpectoConfig -> string[] -> Test -> int ` . Runs the passed tests
244- and also overrides the passed ` ExpectoConfig ` with the command line parameters.
245- Note: now deprecated please use CLIArgs below.
246-
247230### ` runTestsWithCLIArgs `
248231
249232Signature ` CLIArguments seq -> string[] -> Test -> int ` . Runs the passed tests
250233and also overrides the passed ` CLIArguments ` with the command line parameters.
251234
252- ### ` runTestsWithCancel `
253-
254- Signature ` CancellationToken -> ExpectoConfig -> Test -> int ` . Runs the passed tests with the passed
255- configuration record. Note: now deprecated please use CLIArgs below.
256-
257- ### ` runTestsWithArgsAndCancel `
258-
259- Signature ` CancellationToken -> ExpectoConfig -> Test -> int ` . Runs the passed tests
260- and also overrides the passed ` ExpectoConfig ` with the command line parameters.
261- configuration record. Note: now deprecated please use CLIArgs below.
262-
263235### ` runTestsWithCLIArgsAndCancel `
264236
265237Signature ` CancellationToken -> ExpectoConfig -> Test -> int ` . Runs the passed tests
266238and also overrides the passed ` CLIArguments ` with the command line parameters.
267239
268- ### ` runTestsInAssembly `
269-
270- Signature ` ExpectoConfig -> string[] -> int ` . Runs the tests in the current
271- assembly and also overrides the passed ` ExpectoConfig ` with the command line
272- parameters. All tests need to be marked with the ` [<Tests>] ` attribute.
273- Note: now deprecated please use CLIArgs below.
274-
275240### ` runTestsInAssemblyWithCLIArgs `
276241
277242Signature ` CLIArguments seq -> string[] -> int ` . Runs the tests in the current
278243assembly and also overrides the passed ` CLIArguments ` with the command line
279244parameters. All tests need to be marked with the ` [<Tests>] ` attribute.
280245
281- ### ` runTestsInAssemblyWithCancel `
282-
283- Signature ` CancellationToken -> ExpectoConfig -> string[] -> int ` . Runs the tests in the current
284- assembly and also overrides the passed ` ExpectoConfig ` with the command line
285- parameters. All tests need to be marked with the ` [<Tests>] ` attribute.
286-
287246### ` runTestsInAssemblyWithCLIArgsAndCancel `
288247
289248Signature ` CancellationToken -> CLIArguments seq -> string[] -> int ` . Runs the tests in the current
0 commit comments