blob: f14c9ab0bb43ed6a2448b98b5097d150b97000a3 [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.
// @dart = 2.9
/// @assertion String decode(List<int> bytes, {bool allowInvalid})
/// Decodes the ASCII bytes (a list of unsigned 7-bit integers) to the
/// corresponding string.
/// ...
/// @description Checks that this method decodes the ASCII bytes (a list of
/// unsigned 7-bit integers) to the corresponding string
/// @author sgrekhov@unipro.ru
import "dart:convert";
import "../../../Utils/expect.dart";
main() {
AsciiCodec codec = new AsciiCodec();
for (int i = 0; i < 128; i++) {
String s = new String.fromCharCode(i);
Expect.equals(s, codec.decode([i]));
}
Expect.equals("", codec.decode([]));
Expect.equals("12345", codec.decode([0x31, 0x32, 0x33, 0x34, 0x35]));
}