@angular-package/testing
Version:
Jasmine unit testing wrapper with additional custom testing features.
9 lines (8 loc) • 375 B
TypeScript
import { Expect } from '../expect.class';
import { TestingExpect } from '../testing-expect.class';
import { TestingExpectToHaveBeenCalled } from './testing-expect-to-have-been-called.class';
export declare class TestingExpectToHaveBeen extends Expect {
get called(): TestingExpectToHaveBeenCalled;
private toHaveBeenCalled;
constructor(expect?: TestingExpect);
}