Function: strictEqual()
strictEqual<
T>(expectedValue):T&Matcher<T>
Defined in: ts-mockito.ts:282
Argument matcher: matches a value strictly equal (===) to expectedValue. This is the
matcher implicitly used for any plain, non-matcher value passed directly to a mocked method.
Type Parameters
T
T
Parameters
expectedValue
T
the value the actual argument must strictly equal
Returns
T & Matcher<T>