2008-03-06 01:23:38 -05:00
|
|
|
! Copyright (C) 2008 Daniel Ehrenberg.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2008-03-05 20:12:40 -05:00
|
|
|
USING: strings io.encodings.utf8 io.encodings.utf16
|
2011-10-31 14:07:17 -04:00
|
|
|
io.encodings.string tools.test io.encodings.binary ;
|
2008-03-05 18:49:02 -05:00
|
|
|
IN: io.encodings.string.tests
|
|
|
|
|
2008-03-05 20:12:40 -05:00
|
|
|
[ "hello" ] [ "hello" utf8 decode ] unit-test
|
2011-10-31 14:07:17 -04:00
|
|
|
[ B{ 0 1 22 255 } ] [ B{ 0 1 22 255 } binary decode ] unit-test
|
2008-03-05 20:12:40 -05:00
|
|
|
[ "he" ] [ "\0h\0e" utf16be decode ] unit-test
|
|
|
|
|
|
|
|
[ "hello" ] [ "hello" utf8 encode >string ] unit-test
|
|
|
|
[ "\0h\0e" ] [ "he" utf16be encode >string ] unit-test
|