michael@0: // Tests conversion of a single byte from UTF-16 to Unicode michael@0: michael@0: load('CharsetConversionTests.js'); michael@0: michael@0: const inString = "A"; michael@0: const expectedString = ""; michael@0: const charset = "UTF-16BE"; michael@0: michael@0: function run_test() { michael@0: checkDecode(CreateScriptableConverter(), charset, inString, expectedString); michael@0: }