| OLD | NEW |
| 1 #!/usr/bin/env dart | 1 #!/usr/bin/env dart |
| 2 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file | 2 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file |
| 3 // for details. All rights reserved. Use of this source code is governed by a | 3 // for details. All rights reserved. Use of this source code is governed by a |
| 4 // BSD-style license that can be found in the LICENSE file. | 4 // BSD-style license that can be found in the LICENSE file. |
| 5 | 5 |
| 6 library utf16_tests; | 6 library utf16_tests; |
| 7 import 'dunit.dart'; | 7 import 'dunit.dart'; |
| 8 import '../../string_encoding/unicode_core.dart'; | 8 import '../../string_encoding/unicode_core.dart'; |
| 9 import '../../string_encoding/utf16.dart'; | 9 import '../../string_encoding/utf16.dart'; |
| 10 | 10 |
| (...skipping 100 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 111 decodeUtf16(testKoreanCharSubsetUtf16beBom), "UTF-16BE Korean"); | 111 decodeUtf16(testKoreanCharSubsetUtf16beBom), "UTF-16BE Korean"); |
| 112 } | 112 } |
| 113 | 113 |
| 114 void testIterableMethods() { | 114 void testIterableMethods() { |
| 115 // empty input | 115 // empty input |
| 116 Expect.isFalse(decodeUtf16AsIterable([]).iterator.moveNext()); | 116 Expect.isFalse(decodeUtf16AsIterable([]).iterator.moveNext()); |
| 117 | 117 |
| 118 IterableUtf16Decoder koreanDecoder = | 118 IterableUtf16Decoder koreanDecoder = |
| 119 decodeUtf16AsIterable(testKoreanCharSubsetUtf16beBom); | 119 decodeUtf16AsIterable(testKoreanCharSubsetUtf16beBom); |
| 120 // get the first character | 120 // get the first character |
| 121 Expect.equals(testKoreanCharSubset.charCodes[0], koreanDecoder.first); | 121 Expect.equals(testKoreanCharSubset.codeUnits[0], koreanDecoder.first); |
| 122 // get the whole translation using the Iterable interface | 122 // get the whole translation using the Iterable interface |
| 123 Expect.stringEquals(testKoreanCharSubset, | 123 Expect.stringEquals(testKoreanCharSubset, |
| 124 new String.fromCharCodes(new List<int>.from(koreanDecoder))); | 124 new String.fromCharCodes(new List<int>.from(koreanDecoder))); |
| 125 | 125 |
| 126 // specify types | 126 // specify types |
| 127 Expect.equals(44032, (new List<int> | 127 Expect.equals(44032, (new List<int> |
| 128 .from(decodeUtf16beAsIterable(testKoreanCharSubsetUtf16beBom)))[0]); | 128 .from(decodeUtf16beAsIterable(testKoreanCharSubsetUtf16beBom)))[0]); |
| 129 Expect.equals(44032, (new List<int> | 129 Expect.equals(44032, (new List<int> |
| 130 .from(decodeUtf16leAsIterable(testKoreanCharSubsetUtf16le)))[0]); | 130 .from(decodeUtf16leAsIterable(testKoreanCharSubsetUtf16le)))[0]); |
| 131 Expect.equals(UNICODE_BOM, (new List<int> | 131 Expect.equals(UNICODE_BOM, (new List<int> |
| 132 .from(decodeUtf16beAsIterable(testKoreanCharSubsetUtf16beBom, | 132 .from(decodeUtf16beAsIterable(testKoreanCharSubsetUtf16beBom, |
| 133 stripBom: false)))[0]); | 133 stripBom: false)))[0]); |
| 134 } | 134 } |
| 135 } | 135 } |
| OLD | NEW |