Move existing BindGenerator test to its own directory and to test that phase specificially, rather than the whole pipeline. Add another BindGenerator test.
		
			
				
	
	
		
			18 lines
		
	
	
		
			621 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			621 B
		
	
	
	
		
			Dart
		
	
	
	
	
	
| library angular2.test.transform;
 | |
| 
 | |
| import 'package:unittest/unittest.dart';
 | |
| import 'package:unittest/vm_config.dart';
 | |
| 
 | |
| import 'bind_generator/all_tests.dart' as bindGenerator;
 | |
| import 'directive_processor/all_tests.dart' as directiveProcessor;
 | |
| import 'integration/all_tests.dart' as integration;
 | |
| import 'reflection_remover/all_tests.dart' as reflectionRemover;
 | |
| 
 | |
| main() {
 | |
|   useVMConfiguration();
 | |
|   group('Bind Generator', bindGenerator.allTests);
 | |
|   group('Directive Processor', directiveProcessor.allTests);
 | |
|   group('Reflection Remover', reflectionRemover.allTests);
 | |
|   group('Transformer Pipeline', integration.allTests);
 | |
| }
 |