| OLD | NEW |
| 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 library css_test; | 5 library css_test; |
| 6 | 6 |
| 7 import 'package:path/path.dart' as path; | 7 import 'package:path/path.dart' as path; |
| 8 import 'package:polymer/src/messages.dart'; | 8 import 'package:polymer/src/messages.dart'; |
| 9 import 'package:polymer/src/utils.dart' as utils; | 9 import 'package:polymer/src/utils.dart' as utils; |
| 10 import 'package:unittest/compact_vm_config.dart'; | 10 import 'package:unittest/compact_vm_config.dart'; |
| (...skipping 480 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 491 }); | 491 }); |
| 492 | 492 |
| 493 test('test_simple_var', test_simple_var); | 493 test('test_simple_var', test_simple_var); |
| 494 test('test_var', test_var); | 494 test('test_var', test_var); |
| 495 test('test_simple_import', test_simple_import); | 495 test('test_simple_import', test_simple_import); |
| 496 test('test_imports', test_imports); | 496 test('test_imports', test_imports); |
| 497 group('test_component_var', test_component_var); | 497 group('test_component_var', test_component_var); |
| 498 test('test_pseudo_element', test_pseudo_element); | 498 test('test_pseudo_element', test_pseudo_element); |
| 499 }); | 499 }); |
| 500 } | 500 } |
| OLD | NEW |