| 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:io'; | 5 import 'dart:io'; |
| 6 | 6 |
| 7 import "package:async_helper/async_helper.dart"; | 7 import "package:async_helper/async_helper.dart"; |
| 8 import "package:expect/expect.dart"; | 8 import "package:expect/expect.dart"; |
| 9 | 9 |
| 10 void testFromUri() { | 10 void testFromUri() { |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 temp.deleteSync(); | 31 temp.deleteSync(); |
| 32 asyncEnd(); | 32 asyncEnd(); |
| 33 }); | 33 }); |
| 34 } | 34 } |
| 35 | 35 |
| 36 void testFromUriUnsupported() { | 36 void testFromUriUnsupported() { |
| 37 Expect.throws( | 37 Expect.throws( |
| 38 () => new Link.fromUri(Uri.parse('http://localhost:8080/index.html')), | 38 () => new Link.fromUri(Uri.parse('http://localhost:8080/index.html')), |
| 39 (e) => e is UnsupportedError); | 39 (e) => e is UnsupportedError); |
| 40 Expect.throws(() => new Link.fromUri(Uri.parse('ftp://localhost/tmp/xxx')), | 40 Expect.throws(() => new Link.fromUri(Uri.parse('ftp://localhost/tmp/xxx')), |
| 41 (e) => e is UnsupportedError); | 41 (e) => e is UnsupportedError); |
| 42 Expect.throws(() => new Link.fromUri(Uri.parse('name#fragment')), | 42 Expect.throws(() => new Link.fromUri(Uri.parse('name#fragment')), |
| 43 (e) => e is UnsupportedError); | 43 (e) => e is UnsupportedError); |
| 44 } | 44 } |
| 45 | 45 |
| 46 void main() { | 46 void main() { |
| 47 testFromUri(); | 47 testFromUri(); |
| 48 testFromUriUnsupported(); | 48 testFromUriUnsupported(); |
| 49 } | 49 } |
| OLD | NEW |