strong-mock
Version:
Type safe mocking library for TypeScript
28 lines (27 loc) • 818 B
TypeScript
import type { Matcher } from '../matchers/matcher';
import type { Property } from '../proxy';
import type { ReturnValue } from './repository/return-value';
/**
* Compare received arguments against matchers.
*/
export interface Expectation {
property: Property;
/**
* `undefined` means this is a property expectation.
* `[]` means this is a function call with no arguments.
*/
args: Matcher[] | undefined;
returnValue: ReturnValue;
min: number;
max: number;
/**
* How many times should this expectation match?
*/
setInvocationCount: (min: number, max: number) => void;
matches: (args: unknown[] | undefined) => boolean;
toString: () => string;
}
/**
* Special symbol denoting the call of a function.
*/
export declare const ApplyProp: unique symbol;