Remove trivial implementations in many spy objects which just calls the parent's `noSuchMethod`. Closes #6410 Closes #6491
		
			
				
	
	
		
			18 lines
		
	
	
		
			412 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			412 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| library router.spies;
 | |
| 
 | |
| import 'package:angular2/router.dart';
 | |
| import 'package:angular2/testing_internal.dart';
 | |
| 
 | |
| @proxy
 | |
| class SpyLocation extends SpyObject implements Location {}
 | |
| 
 | |
| @proxy
 | |
| class SpyRouter extends SpyObject implements Router {}
 | |
| 
 | |
| @proxy
 | |
| class SpyRouterOutlet extends SpyObject implements RouterOutlet {}
 | |
| 
 | |
| class SpyPlatformLocation extends SpyObject implements PlatformLocation {
 | |
|   String pathname;
 | |
| }
 |