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

Side by Side Diff: pkg/intl/test/find_default_locale_standalone_test.dart

Issue 22284003: pkg: analysis aided cleanup (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: nits Created 7 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « pkg/intl/lib/src/intl_helpers.dart ('k') | pkg/intl/test/intl_message_basic_example_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) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 find_default_locale_browser_test; 5 library find_default_locale_browser_test;
6 6
7 import 'package:intl/intl.dart'; 7 import 'package:intl/intl.dart';
8 import 'package:intl/intl_standalone.dart'; 8 import 'package:intl/intl_standalone.dart';
9 import 'package:unittest/unittest.dart'; 9 import 'package:unittest/unittest.dart';
10 import 'dart:io';
11 10
12 main() { 11 main() {
13 test("Find system locale standalone", () { 12 test("Find system locale standalone", () {
14 // TODO (alanknight): This only verifies that we found some locale. We 13 // TODO (alanknight): This only verifies that we found some locale. We
15 // should find a way to force the system locale before the test is run 14 // should find a way to force the system locale before the test is run
16 // and then verify that it's actually the correct value. 15 // and then verify that it's actually the correct value.
17 // We have no way of getting this reliably for Windows, so it will fail. 16 // We have no way of getting this reliably for Windows, so it will fail.
18 Intl.systemLocale = "xx_YY"; 17 Intl.systemLocale = "xx_YY";
19 var callback = expectAsync1(verifyLocale); 18 var callback = expectAsync1(verifyLocale);
20 findSystemLocale().then(callback); 19 findSystemLocale().then(callback);
21 }); 20 });
22 } 21 }
23 22
24 verifyLocale(_) { 23 verifyLocale(_) {
25 expect(Intl.systemLocale, isNot(equals("xx_YY"))); 24 expect(Intl.systemLocale, isNot(equals("xx_YY")));
26 var pattern = new RegExp(r"\w\w_[A-Z0-9]+"); 25 var pattern = new RegExp(r"\w\w_[A-Z0-9]+");
27 var shortPattern = new RegExp(r"\w\w"); 26 var shortPattern = new RegExp(r"\w\w");
28 var match = pattern.hasMatch(Intl.systemLocale); 27 var match = pattern.hasMatch(Intl.systemLocale);
29 var shortMatch = shortPattern.hasMatch(Intl.systemLocale); 28 var shortMatch = shortPattern.hasMatch(Intl.systemLocale);
30 expect(match || shortMatch, isTrue); 29 expect(match || shortMatch, isTrue);
31 } 30 }
OLDNEW
« no previous file with comments | « pkg/intl/lib/src/intl_helpers.dart ('k') | pkg/intl/test/intl_message_basic_example_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698