BREAKING CHANGE All private exports from 'angular2/src/core/{directives,pipes,forms}' should be replaced with 'angular2/src/common/{directives,pipes,formis}' Closes #5153
21 lines
557 B
Dart
21 lines
557 B
Dart
library core.spies;
|
|
|
|
import 'package:angular2/common.dart';
|
|
import 'package:angular2/src/core/change_detection/change_detection.dart';
|
|
import 'package:angular2/testing_internal.dart';
|
|
|
|
@proxy
|
|
class SpyNgControl extends SpyObject implements NgControl {
|
|
noSuchMethod(m) => super.noSuchMethod(m);
|
|
}
|
|
|
|
@proxy
|
|
class SpyValueAccessor extends SpyObject implements ControlValueAccessor {
|
|
noSuchMethod(m) => super.noSuchMethod(m);
|
|
}
|
|
|
|
@proxy
|
|
class SpyChangeDetectorRef extends SpyObject implements ChangeDetectorRef {
|
|
noSuchMethod(m) => super.noSuchMethod(m);
|
|
}
|