2015-06-18 22:40:12 +00:00
|
|
|
library test_lib.spies;
|
|
|
|
|
|
2015-07-24 21:56:57 +00:00
|
|
|
import 'package:angular2/src/change_detection/change_detection.dart';
|
2015-07-06 17:38:12 +00:00
|
|
|
import 'package:angular2/di.dart';
|
2015-06-18 22:40:12 +00:00
|
|
|
import './test_lib.dart';
|
|
|
|
|
|
2015-08-06 22:07:33 +00:00
|
|
|
@proxy
|
2015-06-18 22:40:12 +00:00
|
|
|
class SpyChangeDetector extends SpyObject implements ChangeDetector {
|
|
|
|
|
noSuchMethod(m) => super.noSuchMethod(m);
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-06 22:07:33 +00:00
|
|
|
@proxy
|
2015-06-18 22:40:12 +00:00
|
|
|
class SpyProtoChangeDetector extends SpyObject implements ProtoChangeDetector {
|
|
|
|
|
noSuchMethod(m) => super.noSuchMethod(m);
|
|
|
|
|
}
|
|
|
|
|
|
2015-08-06 22:07:33 +00:00
|
|
|
@proxy
|
2015-07-06 17:38:12 +00:00
|
|
|
class SpyDependencyProvider extends SpyObject implements DependencyProvider {
|
|
|
|
|
noSuchMethod(m) => super.noSuchMethod(m);
|
2015-07-15 20:26:02 +00:00
|
|
|
}
|
|
|
|
|
|
2015-08-06 22:07:33 +00:00
|
|
|
@proxy
|
2015-07-15 20:26:02 +00:00
|
|
|
class SpyChangeDetectorRef extends SpyObject implements ChangeDetectorRef {
|
|
|
|
|
noSuchMethod(m) => super.noSuchMethod(m);
|
2015-07-24 21:56:57 +00:00
|
|
|
}
|
2015-07-31 19:23:50 +00:00
|
|
|
|
|
|
|
|
@proxy
|
2015-08-04 19:05:30 +00:00
|
|
|
class SpyIterableDifferFactory extends SpyObject
|
|
|
|
|
implements IterableDifferFactory {
|
2015-07-31 19:23:50 +00:00
|
|
|
noSuchMethod(m) => super.noSuchMethod(m);
|
|
|
|
|
}
|
2015-08-06 17:39:02 +00:00
|
|
|
|
|
|
|
|
@proxy
|
|
|
|
|
class SpyInjector extends SpyObject implements Injector {
|
|
|
|
|
noSuchMethod(m) => super.noSuchMethod(m);
|
|
|
|
|
}
|