2015-08-26 14:41:41 -04:00
|
|
|
library core.spies;
|
|
|
|
|
2015-09-04 01:01:36 -04:00
|
|
|
import 'package:angular2/core.dart';
|
2015-08-26 14:41:41 -04:00
|
|
|
import 'package:angular2/src/core/change_detection/change_detection.dart';
|
2015-11-19 18:09:34 -05:00
|
|
|
import 'package:angular2/src/platform/dom/dom_adapter.dart';
|
2016-04-28 20:50:03 -04:00
|
|
|
import 'package:@angular/core/testing/testing_internal.dart';
|
2015-08-26 14:41:41 -04:00
|
|
|
|
|
|
|
@proxy
|
2016-01-06 17:13:44 -05:00
|
|
|
class SpyChangeDetectorRef extends SpyObject implements ChangeDetectorRef {}
|
2015-09-30 18:28:26 -04:00
|
|
|
|
2015-08-26 14:41:41 -04:00
|
|
|
@proxy
|
|
|
|
class SpyIterableDifferFactory extends SpyObject
|
2016-01-12 14:36:58 -05:00
|
|
|
implements IterableDifferFactory {}
|
2015-08-26 14:41:41 -04:00
|
|
|
|
|
|
|
@proxy
|
2016-01-12 14:36:58 -05:00
|
|
|
class SpyElementRef extends SpyObject implements ElementRef {}
|
2015-08-26 14:41:41 -04:00
|
|
|
|
|
|
|
@proxy
|
2016-01-12 14:36:58 -05:00
|
|
|
class SpyDomAdapter extends SpyObject implements DomAdapter {}
|