C# Class XunitShould.Sdk.InRangeException

Inheritance: XunitShould.Sdk.RangeException
ファイルを表示 Open project: EddieGarmon/XunitShould

Public Methods

Method Description
InRangeException ( object actual, object low, bool lowInclusive, object high, bool highInclusive ) : System

Creates a new instance of the InRangeException class.

Method Details

InRangeException() public method

Creates a new instance of the InRangeException class.
public InRangeException ( object actual, object low, bool lowInclusive, object high, bool highInclusive ) : System
actual object The actual object value
low object The low value of the range
lowInclusive bool /// if set to true low is considered in the range. ///
high object The high value of the range
highInclusive bool /// if set to true high is considered in the range. ///
return System