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