angular-cn/modules/angular2/src/mock/mock_application_ref.ts
Alex Rickabaugh 8dd3082ea3 feat(core): PlatformRef and ApplicationRef support registration of disposal functions.
These functions will be called whenever the platform or application are being disposed.
2015-10-26 21:35:18 +00:00

24 lines
839 B
TypeScript

import {ApplicationRef} from 'angular2/src/core/application_ref';
import {Type} from 'angular2/src/core/facade/lang';
import {ComponentRef} from 'angular2/src/core/linker/dynamic_component_loader';
import {Provider, Injector} from 'angular2/src/core/di';
import {NgZone} from 'angular2/src/core/zone/ng_zone';
import {Promise} from 'angular2/src/core/facade/async';
export class MockApplicationRef extends ApplicationRef {
registerBootstrapListener(listener: (ref: ComponentRef) => void): void {}
registerDisposeListener(dispose: () => void): void {}
bootstrap(componentType: Type, bindings?: Array<Type | Provider | any[]>): Promise<ComponentRef> {
return null;
}
get injector(): Injector { return null; };
get zone(): NgZone { return null; };
dispose(): void {}
get componentTypes(): Type[] { return null; };
}