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 import "dart:collection"; | 5 import "dart:collection"; |
6 | 6 |
7 import "package:expect/expect.dart"; | 7 import "package:expect/expect.dart"; |
8 | 8 |
9 void testInvalidArguments() { | 9 void testInvalidArguments() { |
10 } | 10 } |
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
182 test(new Uri(pathSegments: ["a", "b"]).pathSegments); | 182 test(new Uri(pathSegments: ["a", "b"]).pathSegments); |
183 } | 183 } |
184 | 184 |
185 main() { | 185 main() { |
186 testInvalidArguments(); | 186 testInvalidArguments(); |
187 testPath(); | 187 testPath(); |
188 testPathSegments(); | 188 testPathSegments(); |
189 testPathCompare(); | 189 testPathCompare(); |
190 testPathSegmentsUnmodifiableList(); | 190 testPathSegmentsUnmodifiableList(); |
191 } | 191 } |
OLD | NEW |