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