@tsdi/unit
Version:
unit testing framework, base on AOP, Ioc container
10 lines (9 loc) • 484 B
TypeScript
import { Type, IInjector } from '@tsdi/ioc';
import { BootContext, BootOption, ConfigureManager } from '@tsdi/boot';
import { UnitTestConfigure, UnitTestOptions } from './UnitTestConfigure';
export declare class UnitTestContext extends BootContext<BootOption> {
getConfiguration(): UnitTestConfigure;
getConfigureManager(): ConfigureManager<UnitTestConfigure>;
static parse(injector: IInjector, target: Type | UnitTestOptions): UnitTestContext;
static ρAnn(): any;
}