chore(test): remove deprecated RootTestComponent

Uses of `RootTestComponent` should be migrated to `ComponentFixture`.
This commit is contained in:
Julie Ralph
2015-12-02 11:54:10 -08:00
committed by Jeremy Elbourn
parent c7242a39d2
commit ad99199d50
7 changed files with 13 additions and 20 deletions
@@ -24,9 +24,9 @@ import {DebugElement, DebugElement_} from 'angular2/src/core/debug/debug_element
/**
* @deprecated Use ComponentFixture
* Fixture for debugging and testing a component.
*/
export abstract class RootTestComponent {
export abstract class ComponentFixture {
debugElement: DebugElement;
abstract detectChanges(): void;
@@ -34,9 +34,6 @@ export abstract class RootTestComponent {
}
export abstract class ComponentFixture extends RootTestComponent {}
export class ComponentFixture_ extends ComponentFixture {
/** @internal */
_componentRef: ComponentRef;