blob: 6aac53e5d10ba7f0bf79f602e0f8a1f8d443f7ac (
plain)
1
2
3
4
5
6
7
8
9
|
// Tests conversion of a single byte from UTF-16 to Unicode
const inString = "A";
const expectedString = "";
const charset = "UTF-16BE";
function run_test() {
checkDecode(CreateScriptableConverter(), charset, inString, expectedString);
}
|