list of parameters to compare against
Checks the parameters in a strict euqlity way. defaults to the toBe() matcher Equivalent to expected == actual
Expected parameter values can be passed that uses the default matcher (toBe) Other matchers, a comparison function or a custom IParameterMatcher can also be passed
If your function accepts functions as parameters an IParameterMatcher must be used
Note: if a matcher function ((value: T) => true) no information will be provided about what value the parameter was expected to be in a test failure message. To provide this expected value string implement IParameterMatcher instead
list of parameters to compare against
Generated using TypeDoc
Checks the parameters in a non-strict equality way. defaults to the toEqual() matcher Equivalent to expected == actual
Expected parameter values can be passed that uses the default matcher (toEqual) Other matchers, a comparison function or a custom IParameterMatcher can also be passed
If your function accepts functions as parameters an IParameterMatcher must be used
Note: if a matcher function ((value: T) => true) no information will be provided about what value the parameter was expected to be in a test failure message. To provide this expected value string implement IParameterMatcher instead