2016-04-12 09:40:37 -07:00
|
|
|
import {
|
|
|
|
ChangeDetectorRef,
|
|
|
|
} from 'angular2/src/core/change_detection/change_detection';
|
2015-08-26 11:41:41 -07:00
|
|
|
|
2015-10-02 07:37:23 -07:00
|
|
|
import {ElementRef} from 'angular2/src/core/linker/element_ref';
|
2015-11-19 15:09:34 -08:00
|
|
|
import {DomAdapter} from 'angular2/src/platform/dom/dom_adapter';
|
2015-08-26 11:41:41 -07:00
|
|
|
|
2015-10-13 00:29:13 -07:00
|
|
|
import {SpyObject, proxy} from 'angular2/testing_internal';
|
2015-08-26 11:41:41 -07:00
|
|
|
|
2016-01-06 14:13:44 -08:00
|
|
|
export class SpyChangeDetectorRef extends SpyObject {
|
|
|
|
constructor() { super(ChangeDetectorRef); }
|
2015-08-26 11:41:41 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
export class SpyIterableDifferFactory extends SpyObject {}
|
|
|
|
|
|
|
|
export class SpyElementRef extends SpyObject {
|
|
|
|
constructor() { super(ElementRef); }
|
|
|
|
}
|
|
|
|
|
|
|
|
export class SpyDomAdapter extends SpyObject {
|
|
|
|
constructor() { super(DomAdapter); }
|
2015-09-02 15:07:31 -07:00
|
|
|
}
|