blob: a6c2856e219751c97a6cc2ab9e0dc6defc5f2ccd [file] [log] [blame]
/*
* Copyright (c) 2017, the Dart project authors. Please see the AUTHORS file
* for details. All rights reserved. Use of this source code is governed by a
* BSD-style license that can be found in the LICENSE file.
*/
/**
* @assertion List<int> convert(
* String string, [
* int start = 0,
* int end
* ])
* Converts the String into a list of its code units.
* ...
* @description Checks that this method converts the String into a list of its
* code units.
* @author sgrekhov@unipro.ru
*/
import "dart:convert";
import "../../../Utils/expect.dart";
main() {
Latin1Encoder encoder = new Latin1Encoder();
for (int i = 0; i < 256; i++) {
String s = new String.fromCharCode(i);
Expect.listEquals([i], encoder.convert(s));
}
Expect.listEquals([], encoder.convert(""));
}