NUnit3 Module
Contains tasks to run NUnit unit tests.
Example
Target.create "Test" (fun _ ->
!! (testDir + "/NUnit.Test.*.dll")
|> NUnit3.run (fun p ->
{p with
ShadowCopy = false })
)
Types
Type | Description |
The --domain option controls of the creation of AppDomains for running tests. See NUnit-Console Command Line Options |
|
The |
|
Functions and values
Function or value | Description |
|
|
Full Usage:
buildArgs parameters assemblies
Parameters:
NUnit3Params
assemblies : seq<string>
Returns: string
|
|
|
|
Full Usage:
run setParams assemblies
Parameters:
NUnit3Params -> NUnit3Params
-
NUnit parameters
assemblies : seq<string>
-
Test assemblies to run NUnit on
|
|