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