diff options
Diffstat (limited to 'intl/uconv/tests/unit/test_bug396637.js')
-rw-r--r-- | intl/uconv/tests/unit/test_bug396637.js | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/intl/uconv/tests/unit/test_bug396637.js b/intl/uconv/tests/unit/test_bug396637.js new file mode 100644 index 0000000000..6aac53e5d1 --- /dev/null +++ b/intl/uconv/tests/unit/test_bug396637.js @@ -0,0 +1,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); +} |