2015-02-27 17:42:21 -05:00
|
|
|
library angular2.test.transform;
|
2015-02-17 11:38:54 -05:00
|
|
|
|
|
|
|
import 'package:unittest/unittest.dart';
|
|
|
|
import 'package:unittest/vm_config.dart';
|
|
|
|
|
2015-03-12 17:10:26 -04:00
|
|
|
import 'bind_generator/all_tests.dart' as bindGenerator;
|
2015-03-06 14:10:14 -05:00
|
|
|
import 'directive_processor/all_tests.dart' as directiveProcessor;
|
|
|
|
import 'integration/all_tests.dart' as integration;
|
|
|
|
import 'reflection_remover/all_tests.dart' as reflectionRemover;
|
2015-03-13 16:24:56 -04:00
|
|
|
import 'template_parser/all_tests.dart' as templateParser;
|
2015-02-27 17:42:21 -05:00
|
|
|
|
2015-02-17 11:38:54 -05:00
|
|
|
main() {
|
|
|
|
useVMConfiguration();
|
2015-03-12 17:10:26 -04:00
|
|
|
group('Bind Generator', bindGenerator.allTests);
|
2015-03-06 14:10:14 -05:00
|
|
|
group('Directive Processor', directiveProcessor.allTests);
|
|
|
|
group('Reflection Remover', reflectionRemover.allTests);
|
|
|
|
group('Transformer Pipeline', integration.allTests);
|
2015-03-13 16:24:56 -04:00
|
|
|
group('Template Parser', templateParser.allTests);
|
2015-02-23 20:38:34 -05:00
|
|
|
}
|