2015-06-18 22:40:12 +00:00
|
|
|
library test_lib.spies;
|
|
|
|
|
|
|
|
|
|
import 'package:angular2/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';
|
|
|
|
|
|
|
|
|
|
@proxy
|
|
|
|
|
class SpyChangeDetector extends SpyObject implements ChangeDetector {
|
|
|
|
|
noSuchMethod(m) => super.noSuchMethod(m);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@proxy
|
|
|
|
|
class SpyProtoChangeDetector extends SpyObject implements ProtoChangeDetector {
|
|
|
|
|
noSuchMethod(m) => super.noSuchMethod(m);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@proxy
|
|
|
|
|
class SpyPipe extends SpyObject implements Pipe {
|
|
|
|
|
noSuchMethod(m) => super.noSuchMethod(m);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@proxy
|
|
|
|
|
class SpyPipeFactory extends SpyObject implements PipeFactory {
|
|
|
|
|
noSuchMethod(m) => super.noSuchMethod(m);
|
2015-07-06 17:38:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@proxy
|
|
|
|
|
class SpyDependencyProvider extends SpyObject implements DependencyProvider {
|
|
|
|
|
noSuchMethod(m) => super.noSuchMethod(m);
|
2015-07-15 20:26:02 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@proxy
|
|
|
|
|
class SpyChangeDetectorRef extends SpyObject implements ChangeDetectorRef {
|
|
|
|
|
noSuchMethod(m) => super.noSuchMethod(m);
|
2015-06-18 22:40:12 +00:00
|
|
|
}
|