michael@0: // Tests conversion from Unicode to ISO-2022-JP michael@0: michael@0: load('CharsetConversionTests.js'); michael@0: michael@0: const inString = "\u3042\u3044\u3046\u3048\u304A\u000D\u000A\u304B\u304D\u304F\u3051\u3053"; michael@0: michael@0: const expectedString = "\x1B$B$\"$$$&$($*\x1B(B\x0D\x0A\x1B$B$+$-$/$1$3\x1B(B"; michael@0: michael@0: const charset = "ISO-2022-JP"; michael@0: michael@0: function run_test() michael@0: { michael@0: checkEncode(CreateScriptableConverter(), charset, inString, expectedString); michael@0: }