C# Class QuickCheck.Result

The result of all the tests run on a property.
Show file Open project: jystic/quickcheck-net

Public Methods

Method Description
Failure ( int tests, ulong seed, int size, TestArgs args, Exception error ) : Result
Success ( int tests ) : Result
ThrowError ( ) : void

Throws if this result is a failure.

Private Methods

Method Description
Result ( int tests, ulong seed, int size, TestArgs args, Exception error ) : System

Method Details

Failure() public static method

public static Failure ( int tests, ulong seed, int size, TestArgs args, Exception error ) : Result
tests int
seed ulong
size int
args TestArgs
error System.Exception
return Result

Success() public static method

public static Success ( int tests ) : Result
tests int
return Result

ThrowError() public method

Throws if this result is a failure.
public ThrowError ( ) : void
return void