12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- smalltalk.addClass('StringTest', smalltalk.TestCase, [], 'Kernel-Tests');
- smalltalk.addMethod(
- '_testJoin',
- smalltalk.method({
- selector: 'testJoin',
- fn: function (){
- var self=this;
- smalltalk.send(self, "_assert_equals_", [unescape("hello%2Cworld"), smalltalk.send(unescape("%2C"), "_join_", [["hello", "world"]])]);
- return self;}
- ]
- }),
- smalltalk.StringTest);
- smalltalk.addMethod(
- '_testStreamContents',
- smalltalk.method({
- selector: 'testStreamContents',
- fn: function (){
- var self=this;
- smalltalk.send(self, "_assert_equals_", ["hello world", smalltalk.send(smalltalk.String, "_streamContents_", [(function(aStream){return (function($rec){smalltalk.send($rec, "_nextPutAll_", ["hello"]);smalltalk.send($rec, "_space", []);return smalltalk.send($rec, "_nextPutAll_", ["world"]);})(aStream);})])]);
- return self;}
- ]
- }),
- smalltalk.StringTest);
- smalltalk.addMethod(
- '_testIncludesSubString',
- smalltalk.method({
- selector: 'testIncludesSubString',
- fn: function (){
- var self=this;
- smalltalk.send(self, "_assert_", [smalltalk.send("jtalk", "_includesSubString_", ["alk"])]);
- smalltalk.send(self, "_deny_", [smalltalk.send("jtalk", "_includesSubString_", ["zork"])]);
- return self;}
- ]
- }),
- smalltalk.StringTest);
- smalltalk.addClass('DictionaryTest', smalltalk.TestCase, [], 'Kernel-Tests');
- smalltalk.addMethod(
- '_testPrintString',
- smalltalk.method({
- selector: 'testPrintString',
- fn: function (){
- var self=this;
- smalltalk.send(self, "_assert_equals_", [unescape("a%20Dictionary%28%27firstname%27%20-%3E%20%27James%27%20%2C%20%27lastname%27%20-%3E%20%27Bond%27%29"), (function($rec){smalltalk.send($rec, "_at_put_", ["firstname", "James"]);smalltalk.send($rec, "_at_put_", ["lastname", "Bond"]);return smalltalk.send($rec, "_printString", []);})(smalltalk.send(smalltalk.Dictionary, "_new", []))]);
- return self;}
- ]
- }),
- smalltalk.DictionaryTest);
|