@angular-package/testing
Version:
Jasmine unit testing wrapper with additional custom testing features.
13 lines (12 loc) • 916 B
TypeScript
import { TestingCore } from '../testing-core.abstract';
import { TestingDescribe } from '../testing-describe.class';
import { TestingExpectation } from '../testing-expectation.class';
import { TestingIt } from '../testing-it.class';
import { TestingItToHaveBeenCalled } from './testing-it-to-have-been-called.class';
import { CounterConfig } from '../../type/counter-config.type';
import { ExecutableTests } from '../../interface/executable-tests.interface';
export declare class TestingItToHaveBeen<Descriptions extends string = string, Expectations extends string = string> extends TestingCore<Descriptions, Expectations> {
#private;
get called(): TestingItToHaveBeenCalled<string, string>;
constructor(allowDescribe: boolean, allowIt: boolean, executable?: ExecutableTests, counter?: CounterConfig, testingDescribe?: TestingDescribe, testingIt?: TestingIt, testingExpectation?: TestingExpectation);
}