FsCheck


IRunner Type

Namespace: FsCheck

Assembly: FsCheck.dll

Base Type: obj

All Interfaces: IRunner

For implementing your own test runner.

Instance members

Instance member Description

this.OnArguments(arg1, arg2, arg3)

Full Usage: this.OnArguments(arg1, arg2, arg3)

Parameters:
    arg0 : int
    arg1 : obj list
    arg2 : int -> obj list -> string

Modifiers: abstract

Called whenever arguments are generated and after the test is run.

arg0 : int
arg1 : obj list
arg2 : int -> obj list -> string

this.OnFinished(arg1, arg2)

Full Usage: this.OnFinished(arg1, arg2)

Parameters:
Modifiers: abstract

Called whenever all tests are done, either Passed, Failed or Exhausted.

arg0 : string
arg1 : TestResult

this.OnShrink(arg1, arg2)

Full Usage: this.OnShrink(arg1, arg2)

Parameters:
    arg0 : obj list
    arg1 : obj list -> string

Modifiers: abstract

Called on a successful shrink.

arg0 : obj list
arg1 : obj list -> string

this.OnStartFixture(arg1)

Full Usage: this.OnStartFixture(arg1)

Parameters:
Modifiers: abstract

Called before a group of properties on a type are checked.

arg0 : Type