UNPKG

alsatian-fluent-assertions

Version:

Fluent assertions extension to Alsatian xUnit framework.

9 lines (8 loc) 600 B
import { SimpleMatcher } from "./simple-matcher"; import { IFluentCore } from "./i-fluent-core"; import { EqType, AssertionContext } from "../types"; import { ISimpleMatcherWithHelpers } from "./i-simple-matcher-with-helpers"; export declare class SimpleMatcherWithHelpers<T, TNext, TPrev> extends SimpleMatcher<T, TNext, TPrev> implements ISimpleMatcherWithHelpers<T, TNext, TPrev> { constructor(actualValue: any, nextValue: any, initial: boolean, prevCore?: IFluentCore<any, any, any>, ctxt?: AssertionContext); equals(expected: T, eqType?: EqType): IFluentCore<T, TNext, TPrev>; }