12 lines
		
	
	
		
			415 B
		
	
	
	
		
			Factor
		
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			415 B
		
	
	
	
		
			Factor
		
	
	
| ! Copyright (C) 2008 Daniel Ehrenberg.
 | |
| ! See http://factorcode.org/license.txt for BSD license.
 | |
| USING: strings io.encodings.utf8 io.encodings.utf16
 | |
| io.encodings.string tools.test ;
 | |
| IN: io.encodings.string.tests
 | |
| 
 | |
| [ "hello" ] [ "hello" utf8 decode ] unit-test
 | |
| [ "he" ] [ "\0h\0e" utf16be decode ] unit-test
 | |
| 
 | |
| [ "hello" ] [ "hello" utf8 encode >string ] unit-test
 | |
| [ "\0h\0e" ] [ "he" utf16be encode >string ] unit-test
 |