mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-31 11:58:40 +09:00
11 lines
280 B
JavaScript
11 lines
280 B
JavaScript
// 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);
|
|
}
|