assertthat
Version:
assertthat provides fluent TDD.
13 lines (11 loc) • 342 B
text/typescript
interface SetAssertions<TContent> {
containing: (item: TContent) => void;
containingAllOf: (iterable: Iterable<TContent>) => void;
containingAnyOf: (iterable: Iterable<TContent>) => void;
atLeast: (expected: Set<TContent>) => void;
atMost: (expected: Set<TContent>) => void;
empty: () => void;
}
export type {
SetAssertions
};