Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1432)

Side by Side Diff: test/big_1_test.dart

Issue 1022963002: pkg/csslib: fixes for args (Closed) Base URL: https://github.com/dart-lang/csslib@master
Patch Set: nits Created 5 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « pubspec.yaml ('k') | test/compiler_test.dart » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 big_1_test; 5 library big_1_test;
6 6
7 import 'package:unittest/unittest.dart'; 7 import 'package:unittest/unittest.dart';
8 import 'testing.dart'; 8 import 'testing.dart';
9 9
10 var options = ['--warnings_as_errors', '--no-colors', 'memory'];
11
12 compilePolyfillAndValidate(String input, String generated) { 10 compilePolyfillAndValidate(String input, String generated) {
13 var errors = []; 11 var errors = [];
14 var stylesheet = polyFillCompileCss(input, errors: errors, opts: options); 12 var stylesheet = polyFillCompileCss(input, errors: errors, opts: options);
15 expect(stylesheet != null, true); 13 expect(stylesheet != null, true);
16 expect(errors.isEmpty, true, reason: errors.toString()); 14 expect(errors.isEmpty, true, reason: errors.toString());
17 expect(prettyPrint(stylesheet), generated); 15 expect(prettyPrint(stylesheet), generated);
18 } 16 }
19 17
20 void big_test() { 18 void big_test() {
21 var input = r''' 19 var input = r'''
(...skipping 1137 matching lines...) Expand 10 before | Expand all | Expand 10 after
1159 .tooltip a, .tooltip div, .tooltip span { 1157 .tooltip a, .tooltip div, .tooltip span {
1160 color: #fff; 1158 color: #fff;
1161 }'''; 1159 }''';
1162 1160
1163 compilePolyfillAndValidate(input, generated); 1161 compilePolyfillAndValidate(input, generated);
1164 } 1162 }
1165 1163
1166 main() { 1164 main() {
1167 test('big #1', big_test); 1165 test('big #1', big_test);
1168 } 1166 }
OLDNEW
« no previous file with comments | « pubspec.yaml ('k') | test/compiler_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698