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