typemoq
Version:
A simple mocking library for TypeScript
23 lines (18 loc) • 571 B
text/typescript
import * as common from "../Common/_all";
import { IMatch } from "./IMatch";
import { Consts } from "../Consts";
export class MatchPred<T> implements IMatch {
readonly ___id = Consts.IMATCH_ID_VALUE;
constructor(private readonly _pred: common.IFunc2<T, boolean>) {
}
___matches(object: Object): boolean {
let match = false;
if (object && this._pred(<T>object))
match = true;
return match;
}
toString(): string {
let res = `It.is(${this._pred})`;
return res;
}
}