2015-08-26 14:41:41 -04:00
|
|
|
library router.spies;
|
|
|
|
|
|
|
|
import 'package:angular2/router.dart';
|
2015-10-13 03:29:13 -04:00
|
|
|
import 'package:angular2/testing_internal.dart';
|
2015-08-26 14:41:41 -04:00
|
|
|
|
|
|
|
@proxy
|
2016-01-12 14:36:58 -05:00
|
|
|
class SpyLocation extends SpyObject implements Location {}
|
2015-08-26 14:41:41 -04:00
|
|
|
|
|
|
|
@proxy
|
2016-01-12 14:36:58 -05:00
|
|
|
class SpyRouter extends SpyObject implements Router {}
|
2015-08-26 14:41:41 -04:00
|
|
|
|
|
|
|
@proxy
|
2016-01-12 14:36:58 -05:00
|
|
|
class SpyRouterOutlet extends SpyObject implements RouterOutlet {}
|
2015-11-23 13:47:06 -05:00
|
|
|
|
|
|
|
class SpyPlatformLocation extends SpyObject implements PlatformLocation {
|
|
|
|
String pathname;
|
|
|
|
}
|