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

Side by Side Diff: pkg/dev_compiler/test/codegen/lib/html/cache_test.dart

Issue 2416853003: Move minitest.dart into the expect package. (Closed)
Patch Set: Created 4 years, 2 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
OLDNEW
1 import 'dart:html'; 1 import 'dart:html';
2 2
3 import 'package:minitest/minitest.dart'; 3 import 'package:expect/minitest.dart';
4 4
5 main() { 5 main() {
6 group('supported', () { 6 group('supported', () {
7 test('supported', () { 7 test('supported', () {
8 expect(ApplicationCache.supported, isTrue); 8 expect(ApplicationCache.supported, isTrue);
9 }); 9 });
10 }); 10 });
11 11
12 group('ApplicationCache', () { 12 group('ApplicationCache', () {
13 test('ApplicationCache', () { 13 test('ApplicationCache', () {
(...skipping 17 matching lines...) Expand all
31 case ApplicationCache.DOWNLOADING: // DOWNLOADING == 3 31 case ApplicationCache.DOWNLOADING: // DOWNLOADING == 3
32 return 'DOWNLOADING'; 32 return 'DOWNLOADING';
33 case ApplicationCache.UPDATEREADY: // UPDATEREADY == 4 33 case ApplicationCache.UPDATEREADY: // UPDATEREADY == 4
34 return 'UPDATEREADY'; 34 return 'UPDATEREADY';
35 case ApplicationCache.OBSOLETE: // OBSOLETE == 5 35 case ApplicationCache.OBSOLETE: // OBSOLETE == 5
36 return 'OBSOLETE'; 36 return 'OBSOLETE';
37 default: 37 default:
38 return 'UNKNOWN CACHE STATUS'; 38 return 'UNKNOWN CACHE STATUS';
39 }; 39 };
40 } 40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698