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

Side by Side Diff: tests/language/instanceof4_test.dart

Issue 12743005: Revert "Remove Expect from core library." (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Reupload (first upload failed). Created 7 years, 9 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 | « tests/language/instanceof3_test.dart ('k') | tests/language/instanceof_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 // Dart test program for testing the instanceof operation. 4 // Dart test program for testing the instanceof operation.
5 // Regression test for issue 5216. 5 // Regression test for issue 5216.
6 6
7 import "package:expect/expect.dart";
8
9 class Foo<T> { 7 class Foo<T> {
10 bool isT() => "a string" is T; 8 bool isT() => "a string" is T;
11 bool isNotT() => "a string" is! T; 9 bool isNotT() => "a string" is! T;
12 bool isListT() => [0, 1, 2] is List<T>; 10 bool isListT() => [0, 1, 2] is List<T>;
13 bool isNotListT() => [0, 1, 2] is! List<T>; 11 bool isNotListT() => [0, 1, 2] is! List<T>;
14 bool isAlsoListT() => <int>[0, 1, 2] is List<T>; 12 bool isAlsoListT() => <int>[0, 1, 2] is List<T>;
15 bool isNeitherListT() => <int>[0, 1, 2] is! List<T>; 13 bool isNeitherListT() => <int>[0, 1, 2] is! List<T>;
16 } 14 }
17 15
18 testFooString() { 16 testFooString() {
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 Expect.isTrue(o.isListT()); 60 Expect.isTrue(o.isListT());
63 Expect.isTrue(!o.isNotListT()); 61 Expect.isTrue(!o.isNotListT());
64 Expect.isTrue(o.isAlsoListT()); 62 Expect.isTrue(o.isAlsoListT());
65 Expect.isTrue(!o.isNeitherListT()); 63 Expect.isTrue(!o.isNeitherListT());
66 } 64 }
67 65
68 main() { 66 main() {
69 testFooString(); 67 testFooString();
70 testFooInt(); 68 testFooInt();
71 } 69 }
OLDNEW
« no previous file with comments | « tests/language/instanceof3_test.dart ('k') | tests/language/instanceof_test.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698