AltCoverFake.DotNet.Testing
namespace AltCoverFake.DotNet.Testing
DotNet
[<RequireQualifiedAccess>]
module DotNet = begin
type ICLIOptions =
abstract member ForceDelete : bool with get
abstract member FailFast : bool with get
abstract member ShowSummary : System.String with get
[<NoComparison>]
type CLIOptions =
| Force of bool
| Fail of bool
| Summary of System.String
| Many of seq<CLIOptions>
| Abstract of ICLIOptions
with
interface ICLIOptions
member FailFast : bool
member ForceDelete : bool
member ShowSummary : System.String
end
Union type defining general command line arguments for dotnet test
use.
Force
indicates a /AltCoverForce
valueFail
indicates a /AltCoverFailFast
valueSummary
indicates a /AltCoverShowSummary
valueMany
indicates a collection of casesAbstract
indicates a collection of cases expressed as an interfacevs
Fast
gives the /AltCoverFailFast
value this representsForceDelete
gives the /AltCoverForce
value this representsSummary
gives the /AltCoverShowSummary
value this represents``` val ImportModuleProperties : (string*string) list
val GetVersionProperties : (string*string) list
val ToTestPropertiesList :
prepare:Abstract.IPrepareOptions ->
collect:Abstract.ICollectOptions -> options:ICLIOptions -> (string*string) list
Options
[<RequireQualifiedAccess>]
Primitive.CollectOptions
recordPrimitive.PrepareOptions
record