1
0

Kernel-Tests.js 101 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121
  1. smalltalk.addPackage('Kernel-Tests', {});
  2. smalltalk.addClass('ArrayTest', smalltalk.TestCase, [], 'Kernel-Tests');
  3. smalltalk.addMethod(
  4. "_testAtIfAbsent",
  5. smalltalk.method({
  6. selector: "testAtIfAbsent",
  7. category: 'testing',
  8. fn: function (){
  9. var self=this;
  10. var array=nil;
  11. (array=["hello", "world"]);
  12. smalltalk.send(self, "_assert_equals_", [smalltalk.send(array, "_at_", [(1)]), "hello"]);
  13. smalltalk.send(self, "_assert_equals_", [smalltalk.send(array, "_at_", [(2)]), "world"]);
  14. smalltalk.send(self, "_assert_equals_", [smalltalk.send(array, "_at_ifAbsent_", [(2), (function(){return "not found";})]), "world"]);
  15. smalltalk.send(self, "_assert_equals_", [smalltalk.send(array, "_at_ifAbsent_", [(0), (function(){return "not found";})]), "not found"]);
  16. smalltalk.send(self, "_assert_equals_", [smalltalk.send(array, "_at_ifAbsent_", [(-10), (function(){return "not found";})]), "not found"]);
  17. smalltalk.send(self, "_assert_equals_", [smalltalk.send(array, "_at_ifAbsent_", [(3), (function(){return "not found";})]), "not found"]);
  18. return self;},
  19. args: [],
  20. source: "testAtIfAbsent\x0a\x09| array |\x0a\x09array := #('hello' 'world').\x0a\x09self assert: (array at: 1) equals: 'hello'.\x0a\x09self assert: (array at: 2) equals: 'world'.\x0a\x09self assert: (array at: 2 ifAbsent: ['not found']) equals: 'world'.\x0a\x09self assert: (array at: 0 ifAbsent: ['not found']) equals: 'not found'.\x0a\x09self assert: (array at: -10 ifAbsent: ['not found']) equals: 'not found'.\x0a\x09self assert: (array at: 3 ifAbsent: ['not found']) equals: 'not found'.",
  21. messageSends: ["assert:equals:", "at:", "at:ifAbsent:"],
  22. referencedClasses: []
  23. }),
  24. smalltalk.ArrayTest);
  25. smalltalk.addMethod(
  26. "_testFirstN",
  27. smalltalk.method({
  28. selector: "testFirstN",
  29. category: 'testing',
  30. fn: function (){
  31. var self=this;
  32. smalltalk.send(self, "_assert_equals_", [[(1),(2),(3)], smalltalk.send([(1),(2),(3),(4),(5)], "_first_", [(3)])]);
  33. return self;},
  34. args: [],
  35. source: "testFirstN\x0a\x09self assert: {1. 2. 3} equals: ({1. 2. 3. 4. 5} first: 3).",
  36. messageSends: ["assert:equals:", "first:"],
  37. referencedClasses: []
  38. }),
  39. smalltalk.ArrayTest);
  40. smalltalk.addMethod(
  41. "_testIfEmpty",
  42. smalltalk.method({
  43. selector: "testIfEmpty",
  44. category: 'testing',
  45. fn: function (){
  46. var self=this;
  47. smalltalk.send(self, "_assert_equals_", ["zork", smalltalk.send("", "_ifEmpty_", [(function(){return "zork";})])]);
  48. return self;},
  49. args: [],
  50. source: "testIfEmpty\x0a\x09self assert: 'zork' equals: ( '' ifEmpty: ['zork'] )",
  51. messageSends: ["assert:equals:", "ifEmpty:"],
  52. referencedClasses: []
  53. }),
  54. smalltalk.ArrayTest);
  55. smalltalk.addClass('BlockClosureTest', smalltalk.TestCase, [], 'Kernel-Tests');
  56. smalltalk.addMethod(
  57. "_testCompiledSource",
  58. smalltalk.method({
  59. selector: "testCompiledSource",
  60. category: 'tests',
  61. fn: function (){
  62. var self=this;
  63. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send((function(){return (1) + (1);}), "_compiledSource", []), "_includesSubString_", ["function"])]);
  64. return self;},
  65. args: [],
  66. source: "testCompiledSource\x0a\x09self assert: ([1+1] compiledSource includesSubString: 'function')",
  67. messageSends: ["assert:", "includesSubString:", "compiledSource", "+"],
  68. referencedClasses: []
  69. }),
  70. smalltalk.BlockClosureTest);
  71. smalltalk.addMethod(
  72. "_testEnsure",
  73. smalltalk.method({
  74. selector: "testEnsure",
  75. category: 'tests',
  76. fn: function (){
  77. var self=this;
  78. smalltalk.send(self, "_assert_", [smalltalk.send((function(){return smalltalk.send((smalltalk.Error || Error), "_new", []);}), "_ensure_", [(function(){return true;})])]);
  79. return self;},
  80. args: [],
  81. source: "testEnsure\x0a\x09self assert: ([Error new] ensure: [true])",
  82. messageSends: ["assert:", "ensure:", "new"],
  83. referencedClasses: ["Error"]
  84. }),
  85. smalltalk.BlockClosureTest);
  86. smalltalk.addMethod(
  87. "_testNumArgs",
  88. smalltalk.method({
  89. selector: "testNumArgs",
  90. category: 'tests',
  91. fn: function (){
  92. var self=this;
  93. smalltalk.send(self, "_assert_equals_", [smalltalk.send((function(){return nil;}), "_numArgs", []), (0)]);
  94. smalltalk.send(self, "_assert_equals_", [smalltalk.send((function(a, b){return nil;}), "_numArgs", []), (2)]);
  95. return self;},
  96. args: [],
  97. source: "testNumArgs\x0a\x09self assert: [] numArgs equals: 0.\x0a\x09self assert: [:a :b | ] numArgs equals: 2",
  98. messageSends: ["assert:equals:", "numArgs"],
  99. referencedClasses: []
  100. }),
  101. smalltalk.BlockClosureTest);
  102. smalltalk.addMethod(
  103. "_testOnDo",
  104. smalltalk.method({
  105. selector: "testOnDo",
  106. category: 'tests',
  107. fn: function (){
  108. var self=this;
  109. smalltalk.send(self, "_assert_", [smalltalk.send((function(){return smalltalk.send(smalltalk.send((smalltalk.Error || Error), "_new", []), "_signal", []);}), "_on_do_", [(smalltalk.Error || Error), (function(ex){return true;})])]);
  110. return self;},
  111. args: [],
  112. source: "testOnDo\x0a\x09self assert: ([Error new signal] on: Error do: [:ex | true])",
  113. messageSends: ["assert:", "on:do:", "signal", "new"],
  114. referencedClasses: ["Error"]
  115. }),
  116. smalltalk.BlockClosureTest);
  117. smalltalk.addMethod(
  118. "_testValue",
  119. smalltalk.method({
  120. selector: "testValue",
  121. category: 'tests',
  122. fn: function (){
  123. var self=this;
  124. smalltalk.send(self, "_assert_equals_", [smalltalk.send((function(){return (1) + (1);}), "_value", []), (2)]);
  125. smalltalk.send(self, "_assert_equals_", [smalltalk.send((function(x){return ((($receiver = x).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]));}), "_value_", [(2)]), (3)]);
  126. smalltalk.send(self, "_assert_equals_", [smalltalk.send((function(x, y){return ((($receiver = x).klass === smalltalk.Number) ? $receiver *y : smalltalk.send($receiver, "__star", [y]));}), "_value_value_", [(2), (4)]), (8)]);
  127. smalltalk.send(self, "_assert_equals_", [smalltalk.send((function(a, b, c){return (1);}), "_value", []), (1)]);
  128. return self;},
  129. args: [],
  130. source: "testValue\x0a\x09self assert: ([1+1] value) equals: 2.\x0a\x09self assert: ([:x | x +1] value: 2) equals: 3.\x0a\x09self assert: ([:x :y | x*y] value: 2 value: 4) equals: 8. \x0a\x0a\x09\x22Arguments are optional in Amber. This isn't ANSI compliant.\x22\x0a\x0a\x09self assert: ([:a :b :c | 1] value) equals: 1",
  131. messageSends: ["assert:equals:", "value", "+", "value:", "value:value:", "*"],
  132. referencedClasses: []
  133. }),
  134. smalltalk.BlockClosureTest);
  135. smalltalk.addMethod(
  136. "_testValueWithPossibleArguments",
  137. smalltalk.method({
  138. selector: "testValueWithPossibleArguments",
  139. category: 'tests',
  140. fn: function (){
  141. var self=this;
  142. smalltalk.send(self, "_assert_equals_", [smalltalk.send((function(){return (1);}), "_valueWithPossibleArguments_", [[(3), (4)]]), (1)]);
  143. smalltalk.send(self, "_assert_equals_", [smalltalk.send((function(a){return ((($receiver = a).klass === smalltalk.Number) ? $receiver +(4) : smalltalk.send($receiver, "__plus", [(4)]));}), "_valueWithPossibleArguments_", [[(3), (4)]]), (7)]);
  144. smalltalk.send(self, "_assert_equals_", [smalltalk.send((function(a, b){return ((($receiver = a).klass === smalltalk.Number) ? $receiver +b : smalltalk.send($receiver, "__plus", [b]));}), "_valueWithPossibleArguments_", [[(3), (4), (5)]]), (7)]);
  145. return self;},
  146. args: [],
  147. source: "testValueWithPossibleArguments\x0a\x09self assert: ([1] valueWithPossibleArguments: #(3 4)) equals: 1.\x0a\x09self assert: ([:a | a + 4] valueWithPossibleArguments: #(3 4)) equals: 7.\x0a\x09self assert: ([:a :b | a + b] valueWithPossibleArguments: #(3 4 5)) equals: 7.",
  148. messageSends: ["assert:equals:", "valueWithPossibleArguments:", "+"],
  149. referencedClasses: []
  150. }),
  151. smalltalk.BlockClosureTest);
  152. smalltalk.addMethod(
  153. "_testWhileFalse",
  154. smalltalk.method({
  155. selector: "testWhileFalse",
  156. category: 'tests',
  157. fn: function (){
  158. var self=this;
  159. var i=nil;
  160. (i=(0));
  161. (function(){while(!(function(){return ((($receiver = i).klass === smalltalk.Number) ? $receiver >(5) : smalltalk.send($receiver, "__gt", [(5)]));})()) {(function(){return (i=((($receiver = i).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)])));})()}})();
  162. smalltalk.send(self, "_assert_equals_", [i, (6)]);
  163. (i=(0));
  164. (function(){while(!(function(){(i=((($receiver = i).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)])));return ((($receiver = i).klass === smalltalk.Number) ? $receiver >(5) : smalltalk.send($receiver, "__gt", [(5)]));})()) {}})();
  165. smalltalk.send(self, "_assert_equals_", [i, (6)]);
  166. return self;},
  167. args: [],
  168. source: "testWhileFalse\x0a\x09| i |\x0a\x09i := 0.\x0a\x09[i > 5] whileFalse: [i := i + 1].\x0a\x09self assert: i equals: 6.\x0a\x0a\x09i := 0.\x0a\x09[i := i + 1. i > 5] whileFalse.\x0a\x09self assert: i equals: 6",
  169. messageSends: ["whileFalse:", ">", "+", "assert:equals:", "whileFalse"],
  170. referencedClasses: []
  171. }),
  172. smalltalk.BlockClosureTest);
  173. smalltalk.addMethod(
  174. "_testWhileTrue",
  175. smalltalk.method({
  176. selector: "testWhileTrue",
  177. category: 'tests',
  178. fn: function (){
  179. var self=this;
  180. var i=nil;
  181. (i=(0));
  182. (function(){while((function(){return ((($receiver = i).klass === smalltalk.Number) ? $receiver <(5) : smalltalk.send($receiver, "__lt", [(5)]));})()) {(function(){return (i=((($receiver = i).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)])));})()}})();
  183. smalltalk.send(self, "_assert_equals_", [i, (5)]);
  184. (i=(0));
  185. (function(){while((function(){(i=((($receiver = i).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)])));return ((($receiver = i).klass === smalltalk.Number) ? $receiver <(5) : smalltalk.send($receiver, "__lt", [(5)]));})()) {}})();
  186. smalltalk.send(self, "_assert_equals_", [i, (5)]);
  187. return self;},
  188. args: [],
  189. source: "testWhileTrue\x0a\x09| i |\x0a\x09i := 0.\x0a\x09[i < 5] whileTrue: [i := i + 1].\x0a\x09self assert: i equals: 5.\x0a\x0a\x09i := 0.\x0a\x09[i := i + 1. i < 5] whileTrue.\x0a\x09self assert: i equals: 5",
  190. messageSends: ["whileTrue:", "<", "+", "assert:equals:", "whileTrue"],
  191. referencedClasses: []
  192. }),
  193. smalltalk.BlockClosureTest);
  194. smalltalk.addClass('BooleanTest', smalltalk.TestCase, [], 'Kernel-Tests');
  195. smalltalk.addMethod(
  196. "_testEquality",
  197. smalltalk.method({
  198. selector: "testEquality",
  199. category: 'tests',
  200. fn: function (){
  201. var self=this;
  202. smalltalk.send(self, "_deny_", [smalltalk.send((0), "__eq", [false])]);
  203. smalltalk.send(self, "_deny_", [smalltalk.send(false, "__eq", [(0)])]);
  204. smalltalk.send(self, "_deny_", [smalltalk.send("", "__eq", [false])]);
  205. smalltalk.send(self, "_deny_", [smalltalk.send(false, "__eq", [""])]);
  206. smalltalk.send(self, "_assert_", [smalltalk.send(true, "__eq", [true])]);
  207. smalltalk.send(self, "_deny_", [smalltalk.send(false, "__eq", [true])]);
  208. smalltalk.send(self, "_deny_", [smalltalk.send(true, "__eq", [false])]);
  209. smalltalk.send(self, "_assert_", [smalltalk.send(false, "__eq", [false])]);
  210. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(true, "_yourself", []), "__eq", [true])]);
  211. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(true, "_yourself", []), "__eq", [smalltalk.send(true, "_yourself", [])])]);
  212. return self;},
  213. args: [],
  214. source: "testEquality\x0a\x09\x22We're on top of JS...just be sure to check the basics!\x22\x0a\x0a\x09self deny: 0 = false. \x0a\x09self deny: false = 0.\x0a\x09self deny: '' = false.\x0a\x09self deny: false = ''.\x0a\x0a\x09self assert: true = true.\x0a\x09self deny: false = true.\x0a\x09self deny: true = false.\x0a\x09self assert: false = false.\x0a\x0a\x09\x22JS may do some type coercing after sending a message\x22\x0a\x09self assert: true yourself = true.\x0a\x09self assert: true yourself = true yourself",
  215. messageSends: ["deny:", "=", "assert:", "yourself"],
  216. referencedClasses: []
  217. }),
  218. smalltalk.BooleanTest);
  219. smalltalk.addMethod(
  220. "_testIdentity",
  221. smalltalk.method({
  222. selector: "testIdentity",
  223. category: 'tests',
  224. fn: function (){
  225. var self=this;
  226. smalltalk.send(self, "_deny_", [smalltalk.send((0), "__eq_eq", [false])]);
  227. smalltalk.send(self, "_deny_", [smalltalk.send(false, "__eq_eq", [(0)])]);
  228. smalltalk.send(self, "_deny_", [smalltalk.send("", "__eq_eq", [false])]);
  229. smalltalk.send(self, "_deny_", [smalltalk.send(false, "__eq_eq", [""])]);
  230. smalltalk.send(self, "_assert_", [smalltalk.send(true, "__eq_eq", [true])]);
  231. smalltalk.send(self, "_deny_", [smalltalk.send(false, "__eq_eq", [true])]);
  232. smalltalk.send(self, "_deny_", [smalltalk.send(true, "__eq_eq", [false])]);
  233. smalltalk.send(self, "_assert_", [smalltalk.send(false, "__eq_eq", [false])]);
  234. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(true, "_yourself", []), "__eq_eq", [true])]);
  235. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(true, "_yourself", []), "__eq_eq", [smalltalk.send(true, "_yourself", [])])]);
  236. return self;},
  237. args: [],
  238. source: "testIdentity\x0a\x09\x22We're on top of JS...just be sure to check the basics!\x22\x0a\x0a\x09self deny: 0 == false. \x0a\x09self deny: false == 0.\x0a\x09self deny: '' == false.\x0a\x09self deny: false == ''.\x0a\x0a\x09self assert: true == true.\x0a\x09self deny: false == true.\x0a\x09self deny: true == false.\x0a\x09self assert: false == false.\x0a\x0a\x09\x22JS may do some type coercing after sending a message\x22\x0a\x09self assert: true yourself == true.\x0a\x09self assert: true yourself == true yourself",
  239. messageSends: ["deny:", "==", "assert:", "yourself"],
  240. referencedClasses: []
  241. }),
  242. smalltalk.BooleanTest);
  243. smalltalk.addMethod(
  244. "_testIfTrueIfFalse",
  245. smalltalk.method({
  246. selector: "testIfTrueIfFalse",
  247. category: 'tests',
  248. fn: function (){
  249. var self=this;
  250. smalltalk.send(self, "_assert_", [smalltalk.send(((($receiver = true).klass === smalltalk.Boolean) ? ($receiver ? (function(){return "alternative block";})() : nil) : smalltalk.send($receiver, "_ifTrue_", [(function(){return "alternative block";})])), "__eq", ["alternative block"])]);
  251. smalltalk.send(self, "_assert_", [smalltalk.send(((($receiver = true).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return "alternative block";})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return "alternative block";})])), "__eq", [nil])]);
  252. smalltalk.send(self, "_assert_", [smalltalk.send(((($receiver = false).klass === smalltalk.Boolean) ? ($receiver ? (function(){return "alternative block";})() : nil) : smalltalk.send($receiver, "_ifTrue_", [(function(){return "alternative block";})])), "__eq", [nil])]);
  253. smalltalk.send(self, "_assert_", [smalltalk.send(((($receiver = false).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return "alternative block";})() : nil) : smalltalk.send($receiver, "_ifFalse_", [(function(){return "alternative block";})])), "__eq", ["alternative block"])]);
  254. smalltalk.send(self, "_assert_", [smalltalk.send(((($receiver = false).klass === smalltalk.Boolean) ? ($receiver ? (function(){return "alternative block";})() : (function(){return "alternative block2";})()) : smalltalk.send($receiver, "_ifTrue_ifFalse_", [(function(){return "alternative block";}), (function(){return "alternative block2";})])), "__eq", ["alternative block2"])]);
  255. smalltalk.send(self, "_assert_", [smalltalk.send(((($receiver = false).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return "alternative block";})() : (function(){return "alternative block2";})()) : smalltalk.send($receiver, "_ifFalse_ifTrue_", [(function(){return "alternative block";}), (function(){return "alternative block2";})])), "__eq", ["alternative block"])]);
  256. smalltalk.send(self, "_assert_", [smalltalk.send(((($receiver = true).klass === smalltalk.Boolean) ? ($receiver ? (function(){return "alternative block";})() : (function(){return "alternative block2";})()) : smalltalk.send($receiver, "_ifTrue_ifFalse_", [(function(){return "alternative block";}), (function(){return "alternative block2";})])), "__eq", ["alternative block"])]);
  257. smalltalk.send(self, "_assert_", [smalltalk.send(((($receiver = true).klass === smalltalk.Boolean) ? (! $receiver ? (function(){return "alternative block";})() : (function(){return "alternative block2";})()) : smalltalk.send($receiver, "_ifFalse_ifTrue_", [(function(){return "alternative block";}), (function(){return "alternative block2";})])), "__eq", ["alternative block2"])]);
  258. return self;},
  259. args: [],
  260. source: "testIfTrueIfFalse\x0a \x0a\x09self assert: (true ifTrue: ['alternative block']) = 'alternative block'.\x0a\x09self assert: (true ifFalse: ['alternative block']) = nil.\x0a\x0a\x09self assert: (false ifTrue: ['alternative block']) = nil.\x0a\x09self assert: (false ifFalse: ['alternative block']) = 'alternative block'.\x0a\x0a\x09self assert: (false ifTrue: ['alternative block'] ifFalse: ['alternative block2']) = 'alternative block2'.\x0a\x09self assert: (false ifFalse: ['alternative block'] ifTrue: ['alternative block2']) = 'alternative block'.\x0a\x0a\x09self assert: (true ifTrue: ['alternative block'] ifFalse: ['alternative block2']) = 'alternative block'.\x0a\x09self assert: (true ifFalse: ['alternative block'] ifTrue: ['alternative block2']) = 'alternative block2'.",
  261. messageSends: ["assert:", "=", "ifTrue:", "ifFalse:", "ifTrue:ifFalse:", "ifFalse:ifTrue:"],
  262. referencedClasses: []
  263. }),
  264. smalltalk.BooleanTest);
  265. smalltalk.addMethod(
  266. "_testLogic",
  267. smalltalk.method({
  268. selector: "testLogic",
  269. category: 'tests',
  270. fn: function (){
  271. var self=this;
  272. (function($rec){smalltalk.send($rec, "_assert_", [smalltalk.send(true, "_&", [true])]);smalltalk.send($rec, "_deny_", [smalltalk.send(true, "_&", [false])]);smalltalk.send($rec, "_deny_", [smalltalk.send(false, "_&", [true])]);return smalltalk.send($rec, "_deny_", [smalltalk.send(false, "_&", [false])]);})(self);
  273. (function($rec){smalltalk.send($rec, "_assert_", [smalltalk.send(true, "_|", [true])]);smalltalk.send($rec, "_assert_", [smalltalk.send(true, "_|", [false])]);smalltalk.send($rec, "_assert_", [smalltalk.send(false, "_|", [true])]);return smalltalk.send($rec, "_deny_", [smalltalk.send(false, "_|", [false])]);})(self);
  274. (function($rec){smalltalk.send($rec, "_assert_", [smalltalk.send(true, "_&", [(1) > (0)])]);smalltalk.send($rec, "_deny_", [smalltalk.send((1) > (0), "_&", [false])]);return smalltalk.send($rec, "_deny_", [smalltalk.send((1) > (0), "_&", [(1) > (2)])]);})(self);
  275. (function($rec){smalltalk.send($rec, "_assert_", [smalltalk.send(false, "_|", [(1) > (0)])]);smalltalk.send($rec, "_assert_", [smalltalk.send((1) > (0), "_|", [false])]);return smalltalk.send($rec, "_assert_", [smalltalk.send((1) > (0), "_|", [(1) > (2)])]);})(self);
  276. return self;},
  277. args: [],
  278. source: "testLogic\x0a \x0a\x09\x22Trivial logic table\x22\x0a\x09self assert: (true & true); deny: (true & false); deny: (false & true); deny: (false & false).\x0a\x09self assert: (true | true); assert: (true | false); assert: (false | true); deny: (false | false).\x0a \x22Checking that expressions work fine too\x22\x0a\x09self assert: (true & (1 > 0)); deny: ((1 > 0) & false); deny: ((1 > 0) & (1 > 2)).\x0a self assert: (false | (1 > 0)); assert: ((1 > 0) | false); assert: ((1 > 0) | (1 > 2))",
  279. messageSends: ["assert:", "&", "deny:", "|", ">"],
  280. referencedClasses: []
  281. }),
  282. smalltalk.BooleanTest);
  283. smalltalk.addMethod(
  284. "_testLogicKeywords",
  285. smalltalk.method({
  286. selector: "testLogicKeywords",
  287. category: 'tests',
  288. fn: function (){
  289. var self=this;
  290. (function($rec){smalltalk.send($rec, "_assert_", [smalltalk.send(true, "_and_", [(function(){return true;})])]);smalltalk.send($rec, "_deny_", [smalltalk.send(true, "_and_", [(function(){return false;})])]);smalltalk.send($rec, "_deny_", [smalltalk.send(false, "_and_", [(function(){return true;})])]);return smalltalk.send($rec, "_deny_", [smalltalk.send(false, "_and_", [(function(){return false;})])]);})(self);
  291. (function($rec){smalltalk.send($rec, "_assert_", [smalltalk.send(true, "_or_", [(function(){return true;})])]);smalltalk.send($rec, "_assert_", [smalltalk.send(true, "_or_", [(function(){return false;})])]);smalltalk.send($rec, "_assert_", [smalltalk.send(false, "_or_", [(function(){return true;})])]);return smalltalk.send($rec, "_deny_", [smalltalk.send(false, "_or_", [(function(){return false;})])]);})(self);
  292. (function($rec){smalltalk.send($rec, "_assert_", [smalltalk.send(true, "_and_", [(function(){return (1) > (0);})])]);smalltalk.send($rec, "_deny_", [smalltalk.send((1) > (0), "_and_", [(function(){return false;})])]);return smalltalk.send($rec, "_deny_", [smalltalk.send((1) > (0), "_and_", [(function(){return (1) > (2);})])]);})(self);
  293. (function($rec){smalltalk.send($rec, "_assert_", [smalltalk.send(false, "_or_", [(function(){return (1) > (0);})])]);smalltalk.send($rec, "_assert_", [smalltalk.send((1) > (0), "_or_", [(function(){return false;})])]);return smalltalk.send($rec, "_assert_", [smalltalk.send((1) > (0), "_or_", [(function(){return (1) > (2);})])]);})(self);
  294. return self;},
  295. args: [],
  296. source: "testLogicKeywords\x0a \x0a\x09\x22Trivial logic table\x22\x0a\x09self \x0a\x09\x09assert: (true and: [ true]); \x0a\x09\x09deny: (true and: [ false ]); \x0a\x09\x09deny: (false and: [ true ]); \x0a\x09\x09deny: (false and: [ false ]).\x0a\x09self \x0a\x09\x09assert: (true or: [ true ]); \x0a\x09\x09assert: (true or: [ false ]); \x0a\x09\x09assert: (false or: [ true ]); \x0a\x09\x09deny: (false or: [ false ]).\x0a \x0a\x09\x22Checking that expressions work fine too\x22\x0a\x09self \x0a\x09\x09assert: (true and: [ 1 > 0 ]); \x0a\x09\x09deny: ((1 > 0) and: [ false ]); \x0a\x09\x09deny: ((1 > 0) and: [ 1 > 2 ]).\x0a self \x0a\x09\x09assert: (false or: [ 1 > 0 ]); \x0a\x09\x09assert: ((1 > 0) or: [ false ]); \x0a\x09\x09assert: ((1 > 0) or: [ 1 > 2 ])",
  297. messageSends: ["assert:", "and:", "deny:", "or:", ">"],
  298. referencedClasses: []
  299. }),
  300. smalltalk.BooleanTest);
  301. smalltalk.addClass('ClassBuilderTest', smalltalk.TestCase, ['builder', 'theClass'], 'Kernel-Tests');
  302. smalltalk.addMethod(
  303. "_setUp",
  304. smalltalk.method({
  305. selector: "setUp",
  306. category: 'running',
  307. fn: function (){
  308. var self=this;
  309. (self['@builder']=smalltalk.send((smalltalk.ClassBuilder || ClassBuilder), "_new", []));
  310. return self;},
  311. args: [],
  312. source: "setUp\x0a\x09builder := ClassBuilder new",
  313. messageSends: ["new"],
  314. referencedClasses: ["ClassBuilder"]
  315. }),
  316. smalltalk.ClassBuilderTest);
  317. smalltalk.addMethod(
  318. "_tearDown",
  319. smalltalk.method({
  320. selector: "tearDown",
  321. category: 'running',
  322. fn: function (){
  323. var self=this;
  324. (($receiver = self['@theClass']) != nil && $receiver != undefined) ? (function(){smalltalk.send(smalltalk.send((smalltalk.Smalltalk || Smalltalk), "_current", []), "_removeClass_", [self['@theClass']]);return (self['@theClass']=nil);})() : nil;
  325. return self;},
  326. args: [],
  327. source: "tearDown\x0a\x09theClass ifNotNil: [Smalltalk current removeClass: theClass. theClass := nil]",
  328. messageSends: ["ifNotNil:", "removeClass:", "current"],
  329. referencedClasses: ["Smalltalk"]
  330. }),
  331. smalltalk.ClassBuilderTest);
  332. smalltalk.addMethod(
  333. "_testClassCopy",
  334. smalltalk.method({
  335. selector: "testClassCopy",
  336. category: 'running',
  337. fn: function (){
  338. var self=this;
  339. (self['@theClass']=smalltalk.send(self['@builder'], "_copyClass_named_", [(smalltalk.ObjectMock || ObjectMock), "ObjectMock2"]));
  340. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(self['@theClass'], "_superclass", []), "__eq_eq", [smalltalk.send((smalltalk.ObjectMock || ObjectMock), "_superclass", [])])]);
  341. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(self['@theClass'], "_instanceVariableNames", []), "__eq_eq", [smalltalk.send((smalltalk.ObjectMock || ObjectMock), "_instanceVariableNames", [])])]);
  342. smalltalk.send(self, "_assert_equals_", [smalltalk.send(self['@theClass'], "_name", []), "ObjectMock2"]);
  343. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(self['@theClass'], "_package", []), "__eq_eq", [smalltalk.send((smalltalk.ObjectMock || ObjectMock), "_package", [])])]);
  344. smalltalk.send(self, "_assert_equals_", [smalltalk.send(smalltalk.send(self['@theClass'], "_methodDictionary", []), "_keys", []), smalltalk.send(smalltalk.send((smalltalk.ObjectMock || ObjectMock), "_methodDictionary", []), "_keys", [])]);
  345. return self;},
  346. args: [],
  347. source: "testClassCopy\x0a\x09theClass := builder copyClass: ObjectMock named: 'ObjectMock2'.\x0a\x09self assert: theClass superclass == ObjectMock superclass.\x0a\x09self assert: theClass instanceVariableNames == ObjectMock instanceVariableNames.\x0a\x09self assert: theClass name equals: 'ObjectMock2'.\x0a\x09self assert: theClass package == ObjectMock package.\x0a\x09self assert: theClass methodDictionary keys equals: ObjectMock methodDictionary keys",
  348. messageSends: ["copyClass:named:", "assert:", "==", "superclass", "instanceVariableNames", "assert:equals:", "name", "package", "keys", "methodDictionary"],
  349. referencedClasses: ["ObjectMock"]
  350. }),
  351. smalltalk.ClassBuilderTest);
  352. smalltalk.addMethod(
  353. "_testInstanceVariableNames",
  354. smalltalk.method({
  355. selector: "testInstanceVariableNames",
  356. category: 'running',
  357. fn: function (){
  358. var self=this;
  359. smalltalk.send(self, "_assert_equals_", [smalltalk.send(self['@builder'], "_instanceVariableNamesFor_", [" hello world "]), ["hello", "world"]]);
  360. return self;},
  361. args: [],
  362. source: "testInstanceVariableNames\x0a\x09self assert: (builder instanceVariableNamesFor: ' hello world ') equals: #('hello' 'world')",
  363. messageSends: ["assert:equals:", "instanceVariableNamesFor:"],
  364. referencedClasses: []
  365. }),
  366. smalltalk.ClassBuilderTest);
  367. smalltalk.addClass('DictionaryTest', smalltalk.TestCase, [], 'Kernel-Tests');
  368. smalltalk.addMethod(
  369. "_testAccessing",
  370. smalltalk.method({
  371. selector: "testAccessing",
  372. category: 'tests',
  373. fn: function (){
  374. var self=this;
  375. var d=nil;
  376. (d=smalltalk.send((smalltalk.Dictionary || Dictionary), "_new", []));
  377. smalltalk.send(d, "_at_put_", ["hello", "world"]);
  378. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(d, "_at_", ["hello"]), "__eq", ["world"])]);
  379. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(d, "_at_ifAbsent_", ["hello", (function(){return nil;})]), "__eq", ["world"])]);
  380. smalltalk.send(self, "_deny_", [smalltalk.send(smalltalk.send(d, "_at_ifAbsent_", ["foo", (function(){return nil;})]), "__eq", ["world"])]);
  381. smalltalk.send(d, "_at_put_", [(1), (2)]);
  382. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(d, "_at_", [(1)]), "__eq", [(2)])]);
  383. smalltalk.send(d, "_at_put_", [smalltalk.send((1), "__at", [(3)]), (3)]);
  384. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(d, "_at_", [smalltalk.send((1), "__at", [(3)])]), "__eq", [(3)])]);
  385. return self;},
  386. args: [],
  387. source: "testAccessing\x0a\x09| d |\x0a\x0a\x09d := Dictionary new.\x0a\x0a\x09d at: 'hello' put: 'world'.\x0a\x09self assert: (d at: 'hello') = 'world'.\x0a\x09self assert: (d at: 'hello' ifAbsent: [nil]) = 'world'.\x0a\x09self deny: (d at: 'foo' ifAbsent: [nil]) = 'world'.\x0a\x0a\x09d at: 1 put: 2.\x0a\x09self assert: (d at: 1) = 2.\x0a\x0a\x09d at: 1@3 put: 3.\x0a\x09self assert: (d at: 1@3) = 3",
  388. messageSends: ["new", "at:put:", "assert:", "=", "at:", "at:ifAbsent:", "deny:", "@"],
  389. referencedClasses: ["Dictionary"]
  390. }),
  391. smalltalk.DictionaryTest);
  392. smalltalk.addMethod(
  393. "_testDynamicDictionaries",
  394. smalltalk.method({
  395. selector: "testDynamicDictionaries",
  396. category: 'tests',
  397. fn: function (){
  398. var self=this;
  399. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(smalltalk.HashedCollection._fromPairs_([smalltalk.send("hello", "__minus_gt", [(1)])]), "_asDictionary", []), "__eq", [smalltalk.send((smalltalk.Dictionary || Dictionary), "_with_", [smalltalk.send("hello", "__minus_gt", [(1)])])])]);
  400. return self;},
  401. args: [],
  402. source: "testDynamicDictionaries\x0a\x09self assert: #{'hello' -> 1} asDictionary = (Dictionary with: 'hello' -> 1)",
  403. messageSends: ["assert:", "=", "asDictionary", "->", "with:"],
  404. referencedClasses: ["Dictionary"]
  405. }),
  406. smalltalk.DictionaryTest);
  407. smalltalk.addMethod(
  408. "_testEquality",
  409. smalltalk.method({
  410. selector: "testEquality",
  411. category: 'tests',
  412. fn: function (){
  413. var self=this;
  414. var d1=nil;
  415. var d2=nil;
  416. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send((smalltalk.Dictionary || Dictionary), "_new", []), "__eq", [smalltalk.send((smalltalk.Dictionary || Dictionary), "_new", [])])]);
  417. (d1=(function($rec){smalltalk.send($rec, "_at_put_", [(1), (2)]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send((smalltalk.Dictionary || Dictionary), "_new", [])));
  418. (d2=(function($rec){smalltalk.send($rec, "_at_put_", [(1), (2)]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send((smalltalk.Dictionary || Dictionary), "_new", [])));
  419. smalltalk.send(self, "_assert_", [smalltalk.send(d1, "__eq", [d2])]);
  420. (d2=(function($rec){smalltalk.send($rec, "_at_put_", [(1), (3)]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send((smalltalk.Dictionary || Dictionary), "_new", [])));
  421. smalltalk.send(self, "_deny_", [smalltalk.send(d1, "__eq", [d2])]);
  422. (d2=(function($rec){smalltalk.send($rec, "_at_put_", [(2), (2)]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send((smalltalk.Dictionary || Dictionary), "_new", [])));
  423. smalltalk.send(self, "_deny_", [smalltalk.send(d1, "__eq", [d2])]);
  424. (d2=(function($rec){smalltalk.send($rec, "_at_put_", [(1), (2)]);smalltalk.send($rec, "_at_put_", [(3), (4)]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send((smalltalk.Dictionary || Dictionary), "_new", [])));
  425. smalltalk.send(self, "_deny_", [smalltalk.send(d1, "__eq", [d2])]);
  426. return self;},
  427. args: [],
  428. source: "testEquality\x0a\x09| d1 d2 |\x0a\x0a\x09self assert: Dictionary new = Dictionary new.\x0a\x09\x09\x0a\x09d1 := Dictionary new at: 1 put: 2; yourself.\x0a\x09d2 := Dictionary new at: 1 put: 2; yourself.\x0a\x09self assert: d1 = d2.\x0a\x0a\x09d2 := Dictionary new at: 1 put: 3; yourself.\x0a\x09self deny: d1 = d2.\x0a\x0a\x09d2 := Dictionary new at: 2 put: 2; yourself.\x0a\x09self deny: d1 = d2.\x0a\x0a\x09d2 := Dictionary new at: 1 put: 2; at: 3 put: 4; yourself.\x0a\x09self deny: d1 = d2.",
  429. messageSends: ["assert:", "=", "new", "at:put:", "yourself", "deny:"],
  430. referencedClasses: ["Dictionary"]
  431. }),
  432. smalltalk.DictionaryTest);
  433. smalltalk.addMethod(
  434. "_testKeys",
  435. smalltalk.method({
  436. selector: "testKeys",
  437. category: 'tests',
  438. fn: function (){
  439. var self=this;
  440. var d=nil;
  441. (d=smalltalk.send((smalltalk.Dictionary || Dictionary), "_new", []));
  442. smalltalk.send(d, "_at_put_", [(1), (2)]);
  443. smalltalk.send(d, "_at_put_", [(2), (3)]);
  444. smalltalk.send(d, "_at_put_", [(3), (4)]);
  445. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(d, "_keys", []), "__eq", [[(1), (2), (3)]])]);
  446. return self;},
  447. args: [],
  448. source: "testKeys\x0a\x09| d |\x0a\x0a\x09d := Dictionary new.\x0a\x09d at: 1 put: 2.\x0a\x09d at: 2 put: 3.\x0a\x09d at: 3 put: 4.\x0a\x0a\x09self assert: d keys = #(1 2 3)",
  449. messageSends: ["new", "at:put:", "assert:", "=", "keys"],
  450. referencedClasses: ["Dictionary"]
  451. }),
  452. smalltalk.DictionaryTest);
  453. smalltalk.addMethod(
  454. "_testPrintString",
  455. smalltalk.method({
  456. selector: "testPrintString",
  457. category: 'tests',
  458. fn: function (){
  459. var self=this;
  460. smalltalk.send(self, "_assert_equals_", ["a Dictionary('firstname' -> 'James' , 'lastname' -> 'Bond')", (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 || Dictionary), "_new", []))]);
  461. return self;},
  462. args: [],
  463. source: "testPrintString\x0a\x09self\x0a\x09\x09assert: 'a Dictionary(''firstname'' -> ''James'' , ''lastname'' -> ''Bond'')' \x0a\x09\x09equals: (Dictionary new \x0a \x09at:'firstname' put: 'James';\x0a \x09at:'lastname' put: 'Bond';\x0a \x09printString)",
  464. messageSends: ["assert:equals:", "at:put:", "printString", "new"],
  465. referencedClasses: ["Dictionary"]
  466. }),
  467. smalltalk.DictionaryTest);
  468. smalltalk.addMethod(
  469. "_testRemoveKey",
  470. smalltalk.method({
  471. selector: "testRemoveKey",
  472. category: 'tests',
  473. fn: function (){
  474. var self=this;
  475. var d=nil;
  476. var key=nil;
  477. (d=smalltalk.send((smalltalk.Dictionary || Dictionary), "_new", []));
  478. smalltalk.send(d, "_at_put_", [(1), (2)]);
  479. smalltalk.send(d, "_at_put_", [(2), (3)]);
  480. smalltalk.send(d, "_at_put_", [(3), (4)]);
  481. (key=(2));
  482. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(d, "_keys", []), "__eq", [[(1), (2), (3)]])]);
  483. smalltalk.send(d, "_removeKey_", [key]);
  484. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(d, "_keys", []), "__eq", [[(1), (3)]])]);
  485. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(d, "_values", []), "__eq", [[(2), (4)]])]);
  486. smalltalk.send(self, "_deny_", [smalltalk.send(d, "_includesKey_", [(2)])]);
  487. return self;},
  488. args: [],
  489. source: "testRemoveKey\x0a | d key |\x0a\x0a d := Dictionary new.\x0a d at: 1 put: 2.\x0a d at: 2 put: 3.\x0a d at: 3 put: 4.\x0a\x0a key := 2.\x0a\x0a self assert: d keys = #(1 2 3).\x0a\x0a d removeKey: key.\x0a self assert: d keys = #(1 3).\x0a self assert: d values = #(2 4).\x0a self deny: (d includesKey: 2)",
  490. messageSends: ["new", "at:put:", "assert:", "=", "keys", "removeKey:", "values", "deny:", "includesKey:"],
  491. referencedClasses: ["Dictionary"]
  492. }),
  493. smalltalk.DictionaryTest);
  494. smalltalk.addMethod(
  495. "_testRemoveKeyIfAbsent",
  496. smalltalk.method({
  497. selector: "testRemoveKeyIfAbsent",
  498. category: 'tests',
  499. fn: function (){
  500. var self=this;
  501. var d=nil;
  502. var key=nil;
  503. (d=smalltalk.send((smalltalk.Dictionary || Dictionary), "_new", []));
  504. smalltalk.send(d, "_at_put_", [(1), (2)]);
  505. smalltalk.send(d, "_at_put_", [(2), (3)]);
  506. smalltalk.send(d, "_at_put_", [(3), (4)]);
  507. (key=(2));
  508. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(d, "_removeKey_", [key]), "__eq", [(3)])]);
  509. (key=(3));
  510. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(d, "_removeKey_ifAbsent_", [key, (function(){return (42);})]), "__eq", [(4)])]);
  511. (key="why");
  512. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(d, "_removeKey_ifAbsent_", [key, (function(){return (42);})]), "__eq", [(42)])]);
  513. return self;},
  514. args: [],
  515. source: "testRemoveKeyIfAbsent\x0a | d key |\x0a\x0a d := Dictionary new.\x0a d at: 1 put: 2.\x0a d at: 2 put: 3.\x0a d at: 3 put: 4.\x0a\x0a key := 2.\x0a self assert: (d removeKey: key) = 3.\x0a\x0a key := 3.\x0a self assert: (d removeKey: key ifAbsent: [42]) = 4.\x0a\x0a key := 'why'.\x0a self assert: (d removeKey: key ifAbsent: [42] ) = 42.",
  516. messageSends: ["new", "at:put:", "assert:", "=", "removeKey:", "removeKey:ifAbsent:"],
  517. referencedClasses: ["Dictionary"]
  518. }),
  519. smalltalk.DictionaryTest);
  520. smalltalk.addMethod(
  521. "_testSize",
  522. smalltalk.method({
  523. selector: "testSize",
  524. category: 'tests',
  525. fn: function (){
  526. var self=this;
  527. var d=nil;
  528. (d=smalltalk.send((smalltalk.Dictionary || Dictionary), "_new", []));
  529. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(d, "_size", []), "__eq", [(0)])]);
  530. smalltalk.send(d, "_at_put_", [(1), (2)]);
  531. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(d, "_size", []), "__eq", [(1)])]);
  532. smalltalk.send(d, "_at_put_", [(2), (3)]);
  533. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(d, "_size", []), "__eq", [(2)])]);
  534. return self;},
  535. args: [],
  536. source: "testSize\x0a\x09| d |\x0a\x0a\x09d := Dictionary new.\x0a\x09self assert: d size = 0.\x0a\x0a\x09d at: 1 put: 2.\x0a\x09self assert: d size = 1.\x0a\x0a\x09d at: 2 put: 3.\x0a\x09self assert: d size = 2.",
  537. messageSends: ["new", "assert:", "=", "size", "at:put:"],
  538. referencedClasses: ["Dictionary"]
  539. }),
  540. smalltalk.DictionaryTest);
  541. smalltalk.addMethod(
  542. "_testValues",
  543. smalltalk.method({
  544. selector: "testValues",
  545. category: 'tests',
  546. fn: function (){
  547. var self=this;
  548. var d=nil;
  549. (d=smalltalk.send((smalltalk.Dictionary || Dictionary), "_new", []));
  550. smalltalk.send(d, "_at_put_", [(1), (2)]);
  551. smalltalk.send(d, "_at_put_", [(2), (3)]);
  552. smalltalk.send(d, "_at_put_", [(3), (4)]);
  553. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(d, "_values", []), "__eq", [[(2), (3), (4)]])]);
  554. return self;},
  555. args: [],
  556. source: "testValues\x0a\x09| d |\x0a\x0a\x09d := Dictionary new.\x0a\x09d at: 1 put: 2.\x0a\x09d at: 2 put: 3.\x0a\x09d at: 3 put: 4.\x0a\x0a\x09self assert: d values = #(2 3 4)",
  557. messageSends: ["new", "at:put:", "assert:", "=", "values"],
  558. referencedClasses: ["Dictionary"]
  559. }),
  560. smalltalk.DictionaryTest);
  561. smalltalk.addClass('JSObjectProxyTest', smalltalk.TestCase, [], 'Kernel-Tests');
  562. smalltalk.addMethod(
  563. "_jsObject",
  564. smalltalk.method({
  565. selector: "jsObject",
  566. category: 'accessing',
  567. fn: function (){
  568. var self=this;
  569. return jsObject = {a: 1, b: function() {return 2;}, c: function(object) {return object;}};
  570. return self;},
  571. args: [],
  572. source: "jsObject\x0a\x09<return jsObject = {a: 1, b: function() {return 2;}, c: function(object) {return object;}}>",
  573. messageSends: [],
  574. referencedClasses: []
  575. }),
  576. smalltalk.JSObjectProxyTest);
  577. smalltalk.addMethod(
  578. "_testDNU",
  579. smalltalk.method({
  580. selector: "testDNU",
  581. category: 'tests',
  582. fn: function (){
  583. var self=this;
  584. smalltalk.send(self, "_should_raise_", [(function(){return smalltalk.send(smalltalk.send(self, "_jsObject", []), "_foo", []);}), (smalltalk.MessageNotUnderstood || MessageNotUnderstood)]);
  585. return self;},
  586. args: [],
  587. source: "testDNU\x0a\x09self should: [self jsObject foo] raise: MessageNotUnderstood",
  588. messageSends: ["should:raise:", "foo", "jsObject"],
  589. referencedClasses: ["MessageNotUnderstood"]
  590. }),
  591. smalltalk.JSObjectProxyTest);
  592. smalltalk.addMethod(
  593. "_testMessageSend",
  594. smalltalk.method({
  595. selector: "testMessageSend",
  596. category: 'tests',
  597. fn: function (){
  598. var self=this;
  599. smalltalk.send(self, "_assert_equals_", [smalltalk.send(smalltalk.send(self, "_jsObject", []), "_a", []), (1)]);
  600. smalltalk.send(self, "_assert_equals_", [smalltalk.send(smalltalk.send(self, "_jsObject", []), "_b", []), (2)]);
  601. smalltalk.send(self, "_assert_equals_", [smalltalk.send(smalltalk.send(self, "_jsObject", []), "_c_", [(3)]), (3)]);
  602. return self;},
  603. args: [],
  604. source: "testMessageSend\x0a\x0a\x09self assert: self jsObject a equals: 1.\x0a\x09self assert: self jsObject b equals: 2.\x0a\x09self assert: (self jsObject c: 3) equals: 3",
  605. messageSends: ["assert:equals:", "a", "jsObject", "b", "c:"],
  606. referencedClasses: []
  607. }),
  608. smalltalk.JSObjectProxyTest);
  609. smalltalk.addMethod(
  610. "_testMethodWithArguments",
  611. smalltalk.method({
  612. selector: "testMethodWithArguments",
  613. category: 'tests',
  614. fn: function (){
  615. var self=this;
  616. smalltalk.send(self, "_deny_", [smalltalk.send(smalltalk.send("body", "_asJQuery", []), "_hasClass_", ["amber"])]);
  617. smalltalk.send(smalltalk.send("body", "_asJQuery", []), "_addClass_", ["amber"]);
  618. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send("body", "_asJQuery", []), "_hasClass_", ["amber"])]);
  619. smalltalk.send(smalltalk.send("body", "_asJQuery", []), "_removeClass_", ["amber"]);
  620. smalltalk.send(self, "_deny_", [smalltalk.send(smalltalk.send("body", "_asJQuery", []), "_hasClass_", ["amber"])]);
  621. return self;},
  622. args: [],
  623. source: "testMethodWithArguments\x0a\x09self deny: ('body' asJQuery hasClass: 'amber').\x0a\x0a\x09'body' asJQuery addClass: 'amber'.\x0a\x09self assert: ('body' asJQuery hasClass: 'amber').\x0a\x0a\x09'body' asJQuery removeClass: 'amber'.\x0a\x09self deny: ('body' asJQuery hasClass: 'amber').",
  624. messageSends: ["deny:", "hasClass:", "asJQuery", "addClass:", "assert:", "removeClass:"],
  625. referencedClasses: []
  626. }),
  627. smalltalk.JSObjectProxyTest);
  628. smalltalk.addMethod(
  629. "_testPrinting",
  630. smalltalk.method({
  631. selector: "testPrinting",
  632. category: 'tests',
  633. fn: function (){
  634. var self=this;
  635. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(smalltalk.send(self, "_jsObject", []), "_printString", []), "__eq", ["[object Object]"])]);
  636. return self;},
  637. args: [],
  638. source: "testPrinting\x0a\x09self assert: self jsObject printString = '[object Object]'",
  639. messageSends: ["assert:", "=", "printString", "jsObject"],
  640. referencedClasses: []
  641. }),
  642. smalltalk.JSObjectProxyTest);
  643. smalltalk.addMethod(
  644. "_testPropertyThatReturnsEmptyString",
  645. smalltalk.method({
  646. selector: "testPropertyThatReturnsEmptyString",
  647. category: 'tests',
  648. fn: function (){
  649. var self=this;
  650. document.location.hash = '';
  651. smalltalk.send(self, "_assert_equals_", ["", smalltalk.send(smalltalk.send((typeof document == 'undefined' ? nil : document), "_location", []), "_hash", [])]);
  652. smalltalk.send(smalltalk.send((typeof document == 'undefined' ? nil : document), "_location", []), "_hash_", ["test"]);
  653. smalltalk.send(self, "_assert_equals_", ["#test", smalltalk.send(smalltalk.send((typeof document == 'undefined' ? nil : document), "_location", []), "_hash", [])]);
  654. return self;},
  655. args: [],
  656. source: "testPropertyThatReturnsEmptyString\x0a\x09<document.location.hash = ''>.\x0a\x09self assert: '' equals: document location hash.\x0a\x0a\x09document location hash: 'test'.\x0a\x09self assert: '#test' equals: document location hash.",
  657. messageSends: ["assert:equals:", "hash", "location", "hash:"],
  658. referencedClasses: []
  659. }),
  660. smalltalk.JSObjectProxyTest);
  661. smalltalk.addMethod(
  662. "_testYourself",
  663. smalltalk.method({
  664. selector: "testYourself",
  665. category: 'tests',
  666. fn: function (){
  667. var self=this;
  668. var body=nil;
  669. (body=(function($rec){smalltalk.send($rec, "_addClass_", ["amber"]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send("body", "_asJQuery", [])));
  670. smalltalk.send(self, "_assert_", [smalltalk.send(body, "_hasClass_", ["amber"])]);
  671. smalltalk.send(body, "_removeClass_", ["amber"]);
  672. smalltalk.send(self, "_deny_", [smalltalk.send(body, "_hasClass_", ["amber"])]);
  673. return self;},
  674. args: [],
  675. source: "testYourself\x0a\x09|body|\x0a\x09body := 'body' asJQuery\x0a\x09\x09\x09\x09addClass: 'amber';\x0a\x09\x09\x09\x09yourself.\x0a\x0a\x09self assert: (body hasClass: 'amber').\x0a\x0a\x09body removeClass: 'amber'.\x0a\x09self deny: (body hasClass: 'amber').",
  676. messageSends: ["addClass:", "yourself", "asJQuery", "assert:", "hasClass:", "removeClass:", "deny:"],
  677. referencedClasses: []
  678. }),
  679. smalltalk.JSObjectProxyTest);
  680. smalltalk.addClass('NumberTest', smalltalk.TestCase, [], 'Kernel-Tests');
  681. smalltalk.addMethod(
  682. "_testArithmetic",
  683. smalltalk.method({
  684. selector: "testArithmetic",
  685. category: 'tests',
  686. fn: function (){
  687. var self=this;
  688. smalltalk.send(self, "_assert_", [smalltalk.send((1.5) + (1), "__eq", [(2.5)])]);
  689. smalltalk.send(self, "_assert_", [smalltalk.send((2) - (1), "__eq", [(1)])]);
  690. smalltalk.send(self, "_assert_", [smalltalk.send((-2) - (1), "__eq", [(-3)])]);
  691. smalltalk.send(self, "_assert_", [smalltalk.send((12) / (2), "__eq", [(6)])]);
  692. smalltalk.send(self, "_assert_", [smalltalk.send((3) * (4), "__eq", [(12)])]);
  693. smalltalk.send(self, "_assert_", [smalltalk.send(((($receiver = (1) + (2)).klass === smalltalk.Number) ? $receiver *(3) : smalltalk.send($receiver, "__star", [(3)])), "__eq", [(9)])]);
  694. smalltalk.send(self, "_assert_", [smalltalk.send((1) + (2) * (3), "__eq", [(7)])]);
  695. return self;},
  696. args: [],
  697. source: "testArithmetic\x0a\x09\x0a\x09\x22We rely on JS here, so we won't test complex behavior, just check if \x0a\x09message sends are corrects\x22\x0a\x0a\x09self assert: 1.5 + 1 = 2.5.\x0a\x09self assert: 2 - 1 = 1.\x0a\x09self assert: -2 - 1 = -3.\x0a\x09self assert: 12 / 2 = 6.\x0a\x09self assert: 3 * 4 = 12.\x0a\x0a\x09\x22Simple parenthesis and execution order\x22\x0a\x0a\x09self assert: 1 + 2 * 3 = 9.\x0a\x09self assert: 1 + (2 * 3) = 7",
  698. messageSends: ["assert:", "=", "+", "-", "/", "*"],
  699. referencedClasses: []
  700. }),
  701. smalltalk.NumberTest);
  702. smalltalk.addMethod(
  703. "_testComparison",
  704. smalltalk.method({
  705. selector: "testComparison",
  706. category: 'tests',
  707. fn: function (){
  708. var self=this;
  709. smalltalk.send(self, "_assert_", [(3) > (2)]);
  710. smalltalk.send(self, "_assert_", [(2) < (3)]);
  711. smalltalk.send(self, "_deny_", [(3) < (2)]);
  712. smalltalk.send(self, "_deny_", [(2) > (3)]);
  713. smalltalk.send(self, "_assert_", [(3) >= (3)]);
  714. smalltalk.send(self, "_assert_", [(3.1) >= (3)]);
  715. smalltalk.send(self, "_assert_", [(3) <= (3)]);
  716. smalltalk.send(self, "_assert_", [(3) <= (3.1)]);
  717. return self;},
  718. args: [],
  719. source: "testComparison\x0a\x0a\x09self assert: 3 > 2.\x0a\x09self assert: 2 < 3.\x0a\x09\x0a\x09self deny: 3 < 2.\x0a\x09self deny: 2 > 3.\x0a\x0a\x09self assert: 3 >= 3.\x0a\x09self assert: 3.1 >= 3.\x0a\x09self assert: 3 <= 3.\x0a\x09self assert: 3 <= 3.1",
  720. messageSends: ["assert:", ">", "<", "deny:", ">=", "<="],
  721. referencedClasses: []
  722. }),
  723. smalltalk.NumberTest);
  724. smalltalk.addMethod(
  725. "_testCopying",
  726. smalltalk.method({
  727. selector: "testCopying",
  728. category: 'tests',
  729. fn: function (){
  730. var self=this;
  731. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send((1), "_copy", []), "__eq_eq", [(1)])]);
  732. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send((1), "_deepCopy", []), "__eq_eq", [(1)])]);
  733. return self;},
  734. args: [],
  735. source: "testCopying\x0a\x09self assert: 1 copy == 1.\x0a\x09self assert: 1 deepCopy == 1",
  736. messageSends: ["assert:", "==", "copy", "deepCopy"],
  737. referencedClasses: []
  738. }),
  739. smalltalk.NumberTest);
  740. smalltalk.addMethod(
  741. "_testEquality",
  742. smalltalk.method({
  743. selector: "testEquality",
  744. category: 'tests',
  745. fn: function (){
  746. var self=this;
  747. smalltalk.send(self, "_assert_", [smalltalk.send((1), "__eq", [(1)])]);
  748. smalltalk.send(self, "_assert_", [smalltalk.send((0), "__eq", [(0)])]);
  749. smalltalk.send(self, "_deny_", [smalltalk.send((1), "__eq", [(0)])]);
  750. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send((1), "_yourself", []), "__eq", [(1)])]);
  751. smalltalk.send(self, "_assert_", [smalltalk.send((1), "__eq", [smalltalk.send((1), "_yourself", [])])]);
  752. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send((1), "_yourself", []), "__eq", [smalltalk.send((1), "_yourself", [])])]);
  753. smalltalk.send(self, "_deny_", [smalltalk.send((0), "__eq", [false])]);
  754. smalltalk.send(self, "_deny_", [smalltalk.send(false, "__eq", [(0)])]);
  755. smalltalk.send(self, "_deny_", [smalltalk.send("", "__eq", [(0)])]);
  756. smalltalk.send(self, "_deny_", [smalltalk.send((0), "__eq", [""])]);
  757. return self;},
  758. args: [],
  759. source: "testEquality\x0a\x09self assert: 1 = 1.\x0a\x09self assert: 0 = 0.\x0a\x09self deny: 1 = 0.\x0a\x0a\x09self assert: 1 yourself = 1.\x0a\x09self assert: 1 = 1 yourself.\x0a\x09self assert: 1 yourself = 1 yourself.\x0a\x09\x0a\x09self deny: 0 = false.\x0a\x09self deny: false = 0.\x0a\x09self deny: '' = 0.\x0a\x09self deny: 0 = ''",
  760. messageSends: ["assert:", "=", "deny:", "yourself"],
  761. referencedClasses: []
  762. }),
  763. smalltalk.NumberTest);
  764. smalltalk.addMethod(
  765. "_testIdentity",
  766. smalltalk.method({
  767. selector: "testIdentity",
  768. category: 'tests',
  769. fn: function (){
  770. var self=this;
  771. smalltalk.send(self, "_assert_", [smalltalk.send((1), "__eq_eq", [(1)])]);
  772. smalltalk.send(self, "_assert_", [smalltalk.send((0), "__eq_eq", [(0)])]);
  773. smalltalk.send(self, "_deny_", [smalltalk.send((1), "__eq_eq", [(0)])]);
  774. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send((1), "_yourself", []), "__eq_eq", [(1)])]);
  775. smalltalk.send(self, "_assert_", [smalltalk.send((1), "__eq_eq", [smalltalk.send((1), "_yourself", [])])]);
  776. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send((1), "_yourself", []), "__eq_eq", [smalltalk.send((1), "_yourself", [])])]);
  777. smalltalk.send(self, "_deny_", [smalltalk.send((1), "__eq_eq", [(2)])]);
  778. return self;},
  779. args: [],
  780. source: "testIdentity\x0a\x09self assert: 1 == 1.\x0a\x09self assert: 0 == 0.\x0a\x09self deny: 1 == 0.\x0a\x0a\x09self assert: 1 yourself == 1.\x0a\x09self assert: 1 == 1 yourself.\x0a\x09self assert: 1 yourself == 1 yourself.\x0a\x09\x0a\x09self deny: 1 == 2",
  781. messageSends: ["assert:", "==", "deny:", "yourself"],
  782. referencedClasses: []
  783. }),
  784. smalltalk.NumberTest);
  785. smalltalk.addMethod(
  786. "_testMinMax",
  787. smalltalk.method({
  788. selector: "testMinMax",
  789. category: 'tests',
  790. fn: function (){
  791. var self=this;
  792. smalltalk.send(self, "_assert_equals_", [smalltalk.send((2), "_max_", [(5)]), (5)]);
  793. smalltalk.send(self, "_assert_equals_", [smalltalk.send((2), "_min_", [(5)]), (2)]);
  794. return self;},
  795. args: [],
  796. source: "testMinMax\x0a\x09\x0a\x09self assert: (2 max: 5) equals: 5.\x0a\x09self assert: (2 min: 5) equals: 2",
  797. messageSends: ["assert:equals:", "max:", "min:"],
  798. referencedClasses: []
  799. }),
  800. smalltalk.NumberTest);
  801. smalltalk.addMethod(
  802. "_testNegated",
  803. smalltalk.method({
  804. selector: "testNegated",
  805. category: 'tests',
  806. fn: function (){
  807. var self=this;
  808. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send((3), "_negated", []), "__eq", [(-3)])]);
  809. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send((-3), "_negated", []), "__eq", [(3)])]);
  810. return self;},
  811. args: [],
  812. source: "testNegated\x0a\x09self assert: 3 negated = -3.\x0a\x09self assert: -3 negated = 3",
  813. messageSends: ["assert:", "=", "negated"],
  814. referencedClasses: []
  815. }),
  816. smalltalk.NumberTest);
  817. smalltalk.addMethod(
  818. "_testPrintShowingDecimalPlaces",
  819. smalltalk.method({
  820. selector: "testPrintShowingDecimalPlaces",
  821. category: 'tests',
  822. fn: function (){
  823. var self=this;
  824. smalltalk.send(self, "_assert_equals_", ["23.00", smalltalk.send((23), "_printShowingDecimalPlaces_", [(2)])]);
  825. smalltalk.send(self, "_assert_equals_", ["23.57", smalltalk.send((23.5698), "_printShowingDecimalPlaces_", [(2)])]);
  826. smalltalk.send(self, "_assert_equals_", ["-234.56700", smalltalk.send(smalltalk.send((234.567), "_negated", []), "_printShowingDecimalPlaces_", [(5)])]);
  827. smalltalk.send(self, "_assert_equals_", ["23", smalltalk.send((23.4567), "_printShowingDecimalPlaces_", [(0)])]);
  828. smalltalk.send(self, "_assert_equals_", ["24", smalltalk.send((23.5567), "_printShowingDecimalPlaces_", [(0)])]);
  829. smalltalk.send(self, "_assert_equals_", ["-23", smalltalk.send(smalltalk.send((23.4567), "_negated", []), "_printShowingDecimalPlaces_", [(0)])]);
  830. smalltalk.send(self, "_assert_equals_", ["-24", smalltalk.send(smalltalk.send((23.5567), "_negated", []), "_printShowingDecimalPlaces_", [(0)])]);
  831. smalltalk.send(self, "_assert_equals_", ["100000000.0", smalltalk.send((100000000), "_printShowingDecimalPlaces_", [(1)])]);
  832. smalltalk.send(self, "_assert_equals_", ["0.98000", smalltalk.send((0.98), "_printShowingDecimalPlaces_", [(5)])]);
  833. smalltalk.send(self, "_assert_equals_", ["-0.98", smalltalk.send(smalltalk.send((0.98), "_negated", []), "_printShowingDecimalPlaces_", [(2)])]);
  834. smalltalk.send(self, "_assert_equals_", ["2.57", smalltalk.send((2.567), "_printShowingDecimalPlaces_", [(2)])]);
  835. smalltalk.send(self, "_assert_equals_", ["-2.57", smalltalk.send((-2.567), "_printShowingDecimalPlaces_", [(2)])]);
  836. smalltalk.send(self, "_assert_equals_", ["0.00", smalltalk.send((0), "_printShowingDecimalPlaces_", [(2)])]);
  837. return self;},
  838. args: [],
  839. source: "testPrintShowingDecimalPlaces\x0a\x09self assert: '23.00' equals: (23 printShowingDecimalPlaces: 2).\x0a\x09self assert: '23.57' equals: (23.5698 printShowingDecimalPlaces: 2).\x0a\x09self assert: '-234.56700' equals:( 234.567 negated printShowingDecimalPlaces: 5).\x0a\x09self assert: '23' equals: (23.4567 printShowingDecimalPlaces: 0).\x0a\x09self assert: '24' equals: (23.5567 printShowingDecimalPlaces: 0).\x0a\x09self assert: '-23' equals: (23.4567 negated printShowingDecimalPlaces: 0).\x0a\x09self assert: '-24' equals: (23.5567 negated printShowingDecimalPlaces: 0).\x0a\x09self assert: '100000000.0' equals: (100000000 printShowingDecimalPlaces: 1).\x0a\x09self assert: '0.98000' equals: (0.98 printShowingDecimalPlaces: 5).\x0a\x09self assert: '-0.98' equals: (0.98 negated printShowingDecimalPlaces: 2).\x0a\x09self assert: '2.57' equals: (2.567 printShowingDecimalPlaces: 2).\x0a\x09self assert: '-2.57' equals: (-2.567 printShowingDecimalPlaces: 2).\x0a\x09self assert: '0.00' equals: (0 printShowingDecimalPlaces: 2).",
  840. messageSends: ["assert:equals:", "printShowingDecimalPlaces:", "negated"],
  841. referencedClasses: []
  842. }),
  843. smalltalk.NumberTest);
  844. smalltalk.addMethod(
  845. "_testRounded",
  846. smalltalk.method({
  847. selector: "testRounded",
  848. category: 'tests',
  849. fn: function (){
  850. var self=this;
  851. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send((3), "_rounded", []), "__eq", [(3)])]);
  852. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send((3.212), "_rounded", []), "__eq", [(3)])]);
  853. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send((3.51), "_rounded", []), "__eq", [(4)])]);
  854. return self;},
  855. args: [],
  856. source: "testRounded\x0a\x09\x0a\x09self assert: 3 rounded = 3.\x0a\x09self assert: 3.212 rounded = 3.\x0a\x09self assert: 3.51 rounded = 4",
  857. messageSends: ["assert:", "=", "rounded"],
  858. referencedClasses: []
  859. }),
  860. smalltalk.NumberTest);
  861. smalltalk.addMethod(
  862. "_testSqrt",
  863. smalltalk.method({
  864. selector: "testSqrt",
  865. category: 'tests',
  866. fn: function (){
  867. var self=this;
  868. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send((4), "_sqrt", []), "__eq", [(2)])]);
  869. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send((16), "_sqrt", []), "__eq", [(4)])]);
  870. return self;},
  871. args: [],
  872. source: "testSqrt\x0a\x09\x0a\x09self assert: 4 sqrt = 2.\x0a\x09self assert: 16 sqrt = 4",
  873. messageSends: ["assert:", "=", "sqrt"],
  874. referencedClasses: []
  875. }),
  876. smalltalk.NumberTest);
  877. smalltalk.addMethod(
  878. "_testSquared",
  879. smalltalk.method({
  880. selector: "testSquared",
  881. category: 'tests',
  882. fn: function (){
  883. var self=this;
  884. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send((4), "_squared", []), "__eq", [(16)])]);
  885. return self;},
  886. args: [],
  887. source: "testSquared\x0a\x09\x0a\x09self assert: 4 squared = 16",
  888. messageSends: ["assert:", "=", "squared"],
  889. referencedClasses: []
  890. }),
  891. smalltalk.NumberTest);
  892. smalltalk.addMethod(
  893. "_testTimesRepeat",
  894. smalltalk.method({
  895. selector: "testTimesRepeat",
  896. category: 'tests',
  897. fn: function (){
  898. var self=this;
  899. var i=nil;
  900. (i=(0));
  901. smalltalk.send((0), "_timesRepeat_", [(function(){return (i=((($receiver = i).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)])));})]);
  902. smalltalk.send(self, "_assert_equals_", [i, (0)]);
  903. smalltalk.send((5), "_timesRepeat_", [(function(){return (i=((($receiver = i).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)])));})]);
  904. smalltalk.send(self, "_assert_equals_", [i, (5)]);
  905. return self;},
  906. args: [],
  907. source: "testTimesRepeat\x0a\x09| i |\x0a\x0a\x09i := 0.\x0a\x090 timesRepeat: [i := i + 1].\x0a\x09self assert: i equals: 0.\x0a\x0a\x095 timesRepeat: [i := i + 1].\x0a\x09self assert: i equals: 5",
  908. messageSends: ["timesRepeat:", "+", "assert:equals:"],
  909. referencedClasses: []
  910. }),
  911. smalltalk.NumberTest);
  912. smalltalk.addMethod(
  913. "_testTo",
  914. smalltalk.method({
  915. selector: "testTo",
  916. category: 'tests',
  917. fn: function (){
  918. var self=this;
  919. smalltalk.send(self, "_assert_equals_", [smalltalk.send((1), "_to_", [(5)]), [(1), (2), (3), (4), (5)]]);
  920. return self;},
  921. args: [],
  922. source: "testTo\x0a\x09self assert: (1 to: 5) equals: #(1 2 3 4 5)",
  923. messageSends: ["assert:equals:", "to:"],
  924. referencedClasses: []
  925. }),
  926. smalltalk.NumberTest);
  927. smalltalk.addMethod(
  928. "_testToBy",
  929. smalltalk.method({
  930. selector: "testToBy",
  931. category: 'tests',
  932. fn: function (){
  933. var self=this;
  934. smalltalk.send(self, "_assert_equals_", [smalltalk.send((0), "_to_by_", [(6), (2)]), [(0), (2), (4), (6)]]);
  935. smalltalk.send(self, "_should_raise_", [(function(){return smalltalk.send((1), "_to_by_", [(4), (0)]);}), (smalltalk.Error || Error)]);
  936. return self;},
  937. args: [],
  938. source: "testToBy\x0a\x09self assert: (0 to: 6 by: 2) equals: #(0 2 4 6).\x0a\x0a\x09self should: [1 to: 4 by: 0] raise: Error",
  939. messageSends: ["assert:equals:", "to:by:", "should:raise:"],
  940. referencedClasses: ["Error"]
  941. }),
  942. smalltalk.NumberTest);
  943. smalltalk.addMethod(
  944. "_testTruncated",
  945. smalltalk.method({
  946. selector: "testTruncated",
  947. category: 'tests',
  948. fn: function (){
  949. var self=this;
  950. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send((3), "_truncated", []), "__eq", [(3)])]);
  951. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send((3.212), "_truncated", []), "__eq", [(3)])]);
  952. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send((3.51), "_truncated", []), "__eq", [(3)])]);
  953. return self;},
  954. args: [],
  955. source: "testTruncated\x0a\x09\x0a\x09self assert: 3 truncated = 3.\x0a\x09self assert: 3.212 truncated = 3.\x0a\x09self assert: 3.51 truncated = 3",
  956. messageSends: ["assert:", "=", "truncated"],
  957. referencedClasses: []
  958. }),
  959. smalltalk.NumberTest);
  960. smalltalk.addClass('ObjectMock', smalltalk.Object, ['foo', 'bar'], 'Kernel-Tests');
  961. smalltalk.addMethod(
  962. "_foo",
  963. smalltalk.method({
  964. selector: "foo",
  965. category: 'not yet classified',
  966. fn: function (){
  967. var self=this;
  968. return self['@foo'];
  969. return self;},
  970. args: [],
  971. source: "foo\x0a\x09^foo",
  972. messageSends: [],
  973. referencedClasses: []
  974. }),
  975. smalltalk.ObjectMock);
  976. smalltalk.addMethod(
  977. "_foo_",
  978. smalltalk.method({
  979. selector: "foo:",
  980. category: 'not yet classified',
  981. fn: function (anObject){
  982. var self=this;
  983. (self['@foo']=anObject);
  984. return self;},
  985. args: ["anObject"],
  986. source: "foo: anObject\x0a\x09foo := anObject",
  987. messageSends: [],
  988. referencedClasses: []
  989. }),
  990. smalltalk.ObjectMock);
  991. smalltalk.addClass('ObjectTest', smalltalk.TestCase, [], 'Kernel-Tests');
  992. smalltalk.addMethod(
  993. "_testBasicAccess",
  994. smalltalk.method({
  995. selector: "testBasicAccess",
  996. category: 'tests',
  997. fn: function (){
  998. var self=this;
  999. var o=nil;
  1000. (o=smalltalk.send((smalltalk.Object || Object), "_new", []));
  1001. smalltalk.send(o, "_basicAt_put_", ["a", (1)]);
  1002. smalltalk.send(self, "_assert_equals_", [smalltalk.send(o, "_basicAt_", ["a"]), (1)]);
  1003. smalltalk.send(self, "_assert_equals_", [smalltalk.send(o, "_basicAt_", ["b"]), nil]);
  1004. return self;},
  1005. args: [],
  1006. source: "testBasicAccess\x0a\x09| o |\x0a\x09o := Object new.\x0a\x09o basicAt: 'a' put: 1.\x0a\x09self assert: (o basicAt: 'a') equals: 1.\x0a\x09self assert: (o basicAt: 'b') equals: nil",
  1007. messageSends: ["new", "basicAt:put:", "assert:equals:", "basicAt:"],
  1008. referencedClasses: ["Object"]
  1009. }),
  1010. smalltalk.ObjectTest);
  1011. smalltalk.addMethod(
  1012. "_testBasicPerform",
  1013. smalltalk.method({
  1014. selector: "testBasicPerform",
  1015. category: 'tests',
  1016. fn: function (){
  1017. var self=this;
  1018. var o=nil;
  1019. (o=smalltalk.send((smalltalk.Object || Object), "_new", []));
  1020. smalltalk.send(o, "_basicAt_put_", ["func", (function(){return "hello";})]);
  1021. smalltalk.send(o, "_basicAt_put_", ["func2", (function(a){return ((($receiver = a).klass === smalltalk.Number) ? $receiver +(1) : smalltalk.send($receiver, "__plus", [(1)]));})]);
  1022. smalltalk.send(self, "_assert_equals_", [smalltalk.send(o, "_basicPerform_", ["func"]), "hello"]);
  1023. smalltalk.send(self, "_assert_equals_", [smalltalk.send(o, "_basicPerform_withArguments_", ["func2", [(3)]]), (4)]);
  1024. return self;},
  1025. args: [],
  1026. source: "testBasicPerform\x0a\x09| o |\x0a\x09o := Object new.\x0a\x09o basicAt: 'func' put: ['hello'].\x09\x0a\x09o basicAt: 'func2' put: [:a | a + 1].\x0a\x0a\x09self assert: (o basicPerform: 'func')\x09 equals: 'hello'.\x0a\x09self assert: (o basicPerform: 'func2' withArguments: #(3)) equals: 4",
  1027. messageSends: ["new", "basicAt:put:", "+", "assert:equals:", "basicPerform:", "basicPerform:withArguments:"],
  1028. referencedClasses: ["Object"]
  1029. }),
  1030. smalltalk.ObjectTest);
  1031. smalltalk.addMethod(
  1032. "_testDNU",
  1033. smalltalk.method({
  1034. selector: "testDNU",
  1035. category: 'tests',
  1036. fn: function (){
  1037. var self=this;
  1038. smalltalk.send(self, "_should_raise_", [(function(){return smalltalk.send(smalltalk.send((smalltalk.Object || Object), "_new", []), "_foo", []);}), (smalltalk.MessageNotUnderstood || MessageNotUnderstood)]);
  1039. return self;},
  1040. args: [],
  1041. source: "testDNU\x0a\x09self should: [Object new foo] raise: MessageNotUnderstood",
  1042. messageSends: ["should:raise:", "foo", "new"],
  1043. referencedClasses: ["Object", "MessageNotUnderstood"]
  1044. }),
  1045. smalltalk.ObjectTest);
  1046. smalltalk.addMethod(
  1047. "_testEquality",
  1048. smalltalk.method({
  1049. selector: "testEquality",
  1050. category: 'tests',
  1051. fn: function (){
  1052. var self=this;
  1053. var o=nil;
  1054. (o=smalltalk.send((smalltalk.Object || Object), "_new", []));
  1055. smalltalk.send(self, "_deny_", [smalltalk.send(o, "__eq", [smalltalk.send((smalltalk.Object || Object), "_new", [])])]);
  1056. smalltalk.send(self, "_assert_", [smalltalk.send(o, "__eq", [o])]);
  1057. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(o, "_yourself", []), "__eq", [o])]);
  1058. smalltalk.send(self, "_assert_", [smalltalk.send(o, "__eq", [smalltalk.send(o, "_yourself", [])])]);
  1059. return self;},
  1060. args: [],
  1061. source: "testEquality\x0a\x09| o |\x0a\x09o := Object new.\x0a\x09self deny: o = Object new.\x0a\x09self assert: o = o.\x0a\x09self assert: o yourself = o.\x0a\x09self assert: o = o yourself",
  1062. messageSends: ["new", "deny:", "=", "assert:", "yourself"],
  1063. referencedClasses: ["Object"]
  1064. }),
  1065. smalltalk.ObjectTest);
  1066. smalltalk.addMethod(
  1067. "_testHalt",
  1068. smalltalk.method({
  1069. selector: "testHalt",
  1070. category: 'tests',
  1071. fn: function (){
  1072. var self=this;
  1073. smalltalk.send(self, "_should_raise_", [(function(){return smalltalk.send(smalltalk.send((smalltalk.Object || Object), "_new", []), "_halt", []);}), (smalltalk.Error || Error)]);
  1074. return self;},
  1075. args: [],
  1076. source: "testHalt\x0a\x09self should: [Object new halt] raise: Error",
  1077. messageSends: ["should:raise:", "halt", "new"],
  1078. referencedClasses: ["Object", "Error"]
  1079. }),
  1080. smalltalk.ObjectTest);
  1081. smalltalk.addMethod(
  1082. "_testIdentity",
  1083. smalltalk.method({
  1084. selector: "testIdentity",
  1085. category: 'tests',
  1086. fn: function (){
  1087. var self=this;
  1088. var o=nil;
  1089. (o=smalltalk.send((smalltalk.Object || Object), "_new", []));
  1090. smalltalk.send(self, "_deny_", [smalltalk.send(o, "__eq_eq", [smalltalk.send((smalltalk.Object || Object), "_new", [])])]);
  1091. smalltalk.send(self, "_assert_", [smalltalk.send(o, "__eq_eq", [o])]);
  1092. return self;},
  1093. args: [],
  1094. source: "testIdentity\x0a\x09| o |\x0a\x09o := Object new.\x0a\x09self deny: o == Object new.\x0a\x09self assert: o == o",
  1095. messageSends: ["new", "deny:", "==", "assert:"],
  1096. referencedClasses: ["Object"]
  1097. }),
  1098. smalltalk.ObjectTest);
  1099. smalltalk.addMethod(
  1100. "_testIfNil",
  1101. smalltalk.method({
  1102. selector: "testIfNil",
  1103. category: 'tests',
  1104. fn: function (){
  1105. var self=this;
  1106. smalltalk.send(self, "_deny_", [smalltalk.send(smalltalk.send((smalltalk.Object || Object), "_new", []), "_isNil", [])]);
  1107. smalltalk.send(self, "_deny_", [smalltalk.send((($receiver = smalltalk.send((smalltalk.Object || Object), "_new", [])) == nil || $receiver == undefined) ? (function(){return true;})() : $receiver, "__eq", [true])]);
  1108. smalltalk.send(self, "_assert_", [smalltalk.send((($receiver = smalltalk.send((smalltalk.Object || Object), "_new", [])) != nil && $receiver != undefined) ? (function(){return true;})() : nil, "__eq", [true])]);
  1109. smalltalk.send(self, "_assert_", [smalltalk.send((($receiver = smalltalk.send((smalltalk.Object || Object), "_new", [])) == nil || $receiver == undefined) ? (function(){return false;})() : (function(){return true;})(), "__eq", [true])]);
  1110. smalltalk.send(self, "_assert_", [smalltalk.send((($receiver = smalltalk.send((smalltalk.Object || Object), "_new", [])) == nil || $receiver == undefined) ? (function(){return false;})() : (function(){return true;})(), "__eq", [true])]);
  1111. return self;},
  1112. args: [],
  1113. source: "testIfNil\x0a\x09self deny: Object new isNil.\x0a\x09self deny: (Object new ifNil: [true]) = true.\x0a\x09self assert: (Object new ifNotNil: [true]) = true.\x0a\x0a\x09self assert: (Object new ifNil: [false] ifNotNil: [true]) = true.\x0a\x09self assert: (Object new ifNotNil: [true] ifNil: [false]) = true",
  1114. messageSends: ["deny:", "isNil", "new", "=", "ifNil:", "assert:", "ifNotNil:", "ifNil:ifNotNil:", "ifNotNil:ifNil:"],
  1115. referencedClasses: ["Object"]
  1116. }),
  1117. smalltalk.ObjectTest);
  1118. smalltalk.addMethod(
  1119. "_testInstVars",
  1120. smalltalk.method({
  1121. selector: "testInstVars",
  1122. category: 'tests',
  1123. fn: function (){
  1124. var self=this;
  1125. var o=nil;
  1126. (o=smalltalk.send((smalltalk.ObjectMock || ObjectMock), "_new", []));
  1127. smalltalk.send(self, "_assert_equals_", [smalltalk.send(o, "_instVarAt_", [smalltalk.symbolFor("foo")]), nil]);
  1128. smalltalk.send(o, "_instVarAt_put_", [smalltalk.symbolFor("foo"), (1)]);
  1129. smalltalk.send(self, "_assert_equals_", [smalltalk.send(o, "_instVarAt_", [smalltalk.symbolFor("foo")]), (1)]);
  1130. smalltalk.send(self, "_assert_equals_", [smalltalk.send(o, "_instVarAt_", ["foo"]), (1)]);
  1131. return self;},
  1132. args: [],
  1133. source: "testInstVars\x0a\x09| o |\x0a\x09o := ObjectMock new.\x0a\x09self assert: (o instVarAt: #foo) equals: nil.\x0a\x0a\x09o instVarAt: #foo put: 1.\x0a\x09self assert: (o instVarAt: #foo) equals: 1.\x0a\x09self assert: (o instVarAt: 'foo') equals: 1",
  1134. messageSends: ["new", "assert:equals:", "instVarAt:", "instVarAt:put:"],
  1135. referencedClasses: ["ObjectMock"]
  1136. }),
  1137. smalltalk.ObjectTest);
  1138. smalltalk.addMethod(
  1139. "_testNilUndefined",
  1140. smalltalk.method({
  1141. selector: "testNilUndefined",
  1142. category: 'tests',
  1143. fn: function (){
  1144. var self=this;
  1145. smalltalk.send(self, "_assert_", [smalltalk.send(nil, "__eq", [(typeof undefined == 'undefined' ? nil : undefined)])]);
  1146. return self;},
  1147. args: [],
  1148. source: "testNilUndefined\x0a\x09\x22nil in Smalltalk is the undefined object in JS\x22\x0a\x0a\x09self assert: nil = undefined",
  1149. messageSends: ["assert:", "="],
  1150. referencedClasses: []
  1151. }),
  1152. smalltalk.ObjectTest);
  1153. smalltalk.addMethod(
  1154. "_testYourself",
  1155. smalltalk.method({
  1156. selector: "testYourself",
  1157. category: 'tests',
  1158. fn: function (){
  1159. var self=this;
  1160. var o=nil;
  1161. (o=smalltalk.send((smalltalk.ObjectMock || ObjectMock), "_new", []));
  1162. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(o, "_yourself", []), "__eq_eq", [o])]);
  1163. return self;},
  1164. args: [],
  1165. source: "testYourself\x0a\x09| o |\x0a\x09o := ObjectMock new.\x0a\x09self assert: o yourself == o",
  1166. messageSends: ["new", "assert:", "==", "yourself"],
  1167. referencedClasses: ["ObjectMock"]
  1168. }),
  1169. smalltalk.ObjectTest);
  1170. smalltalk.addMethod(
  1171. "_testidentityHash",
  1172. smalltalk.method({
  1173. selector: "testidentityHash",
  1174. category: 'tests',
  1175. fn: function (){
  1176. var self=this;
  1177. var o1=nil;
  1178. var o2=nil;
  1179. (o1=smalltalk.send((smalltalk.Object || Object), "_new", []));
  1180. (o2=smalltalk.send((smalltalk.Object || Object), "_new", []));
  1181. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(o1, "_identityHash", []), "__eq_eq", [smalltalk.send(o1, "_identityHash", [])])]);
  1182. smalltalk.send(self, "_deny_", [smalltalk.send(smalltalk.send(o1, "_identityHash", []), "__eq_eq", [smalltalk.send(o2, "_identityHash", [])])]);
  1183. return self;},
  1184. args: [],
  1185. source: "testidentityHash\x0a\x09| o1 o2 |\x0a\x09\x0a\x09o1 := Object new.\x0a\x09o2 := Object new.\x0a\x0a\x09self assert: o1 identityHash == o1 identityHash.\x0a\x09self deny: o1 identityHash == o2 identityHash",
  1186. messageSends: ["new", "assert:", "==", "identityHash", "deny:"],
  1187. referencedClasses: ["Object"]
  1188. }),
  1189. smalltalk.ObjectTest);
  1190. smalltalk.addClass('PackageTest', smalltalk.TestCase, ['zorkPackage', 'grulPackage', 'backUpCommitPathJs', 'backUpCommitPathSt'], 'Kernel-Tests');
  1191. smalltalk.addMethod(
  1192. "_setUp",
  1193. smalltalk.method({
  1194. selector: "setUp",
  1195. category: 'running',
  1196. fn: function (){
  1197. var self=this;
  1198. (self['@backUpCommitPathJs']=smalltalk.send((smalltalk.Package || Package), "_defaultCommitPathJs", []));
  1199. (self['@backUpCommitPathSt']=smalltalk.send((smalltalk.Package || Package), "_defaultCommitPathSt", []));
  1200. smalltalk.send((smalltalk.Package || Package), "_resetCommitPaths", []);
  1201. (self['@zorkPackage']=smalltalk.send(smalltalk.send((smalltalk.Package || Package), "_new", []), "_name_", ["Zork"]));
  1202. (self['@grulPackage']=(function($rec){smalltalk.send($rec, "_name_", ["Grul"]);smalltalk.send($rec, "_commitPathJs_", ["server/grul/js"]);smalltalk.send($rec, "_commitPathSt_", ["grul/st"]);return smalltalk.send($rec, "_yourself", []);})(smalltalk.send((smalltalk.Package || Package), "_new", [])));
  1203. return self;},
  1204. args: [],
  1205. source: "setUp\x0a\x09backUpCommitPathJs := Package defaultCommitPathJs.\x0a\x09backUpCommitPathSt := Package defaultCommitPathSt.\x0a\x0a\x09Package resetCommitPaths.\x0a\x0a\x09zorkPackage := Package new name: 'Zork'.\x0a\x09grulPackage := Package new \x0a\x09\x09\x09\x09\x09name: 'Grul';\x0a\x09\x09\x09\x09\x09commitPathJs: 'server/grul/js';\x0a\x09\x09\x09\x09\x09commitPathSt: 'grul/st';\x0a\x09\x09\x09\x09\x09yourself",
  1206. messageSends: ["defaultCommitPathJs", "defaultCommitPathSt", "resetCommitPaths", "name:", "new", "commitPathJs:", "commitPathSt:", "yourself"],
  1207. referencedClasses: ["Package"]
  1208. }),
  1209. smalltalk.PackageTest);
  1210. smalltalk.addMethod(
  1211. "_tearDown",
  1212. smalltalk.method({
  1213. selector: "tearDown",
  1214. category: 'running',
  1215. fn: function (){
  1216. var self=this;
  1217. (function($rec){smalltalk.send($rec, "_defaultCommitPathJs_", [self['@backUpCommitPathJs']]);return smalltalk.send($rec, "_defaultCommitPathSt_", [self['@backUpCommitPathSt']]);})((smalltalk.Package || Package));
  1218. return self;},
  1219. args: [],
  1220. source: "tearDown\x0a\x09 Package \x0a\x09\x09defaultCommitPathJs: backUpCommitPathJs;\x0a\x09\x09defaultCommitPathSt: backUpCommitPathSt",
  1221. messageSends: ["defaultCommitPathJs:", "defaultCommitPathSt:"],
  1222. referencedClasses: ["Package"]
  1223. }),
  1224. smalltalk.PackageTest);
  1225. smalltalk.addMethod(
  1226. "_testGrulCommitPathJsShouldBeServerGrulJs",
  1227. smalltalk.method({
  1228. selector: "testGrulCommitPathJsShouldBeServerGrulJs",
  1229. category: 'tests',
  1230. fn: function (){
  1231. var self=this;
  1232. smalltalk.send(self, "_assert_equals_", ["server/grul/js", smalltalk.send(self['@grulPackage'], "_commitPathJs", [])]);
  1233. return self;},
  1234. args: [],
  1235. source: "testGrulCommitPathJsShouldBeServerGrulJs\x0a\x09self assert: 'server/grul/js' equals: grulPackage commitPathJs",
  1236. messageSends: ["assert:equals:", "commitPathJs"],
  1237. referencedClasses: []
  1238. }),
  1239. smalltalk.PackageTest);
  1240. smalltalk.addMethod(
  1241. "_testGrulCommitPathStShouldBeGrulSt",
  1242. smalltalk.method({
  1243. selector: "testGrulCommitPathStShouldBeGrulSt",
  1244. category: 'tests',
  1245. fn: function (){
  1246. var self=this;
  1247. smalltalk.send(self, "_assert_equals_", ["grul/st", smalltalk.send(self['@grulPackage'], "_commitPathSt", [])]);
  1248. return self;},
  1249. args: [],
  1250. source: "testGrulCommitPathStShouldBeGrulSt\x0a\x09self assert: 'grul/st' equals: grulPackage commitPathSt",
  1251. messageSends: ["assert:equals:", "commitPathSt"],
  1252. referencedClasses: []
  1253. }),
  1254. smalltalk.PackageTest);
  1255. smalltalk.addMethod(
  1256. "_testZorkCommitPathJsShouldBeJs",
  1257. smalltalk.method({
  1258. selector: "testZorkCommitPathJsShouldBeJs",
  1259. category: 'tests',
  1260. fn: function (){
  1261. var self=this;
  1262. smalltalk.send(self, "_assert_equals_", ["js", smalltalk.send(self['@zorkPackage'], "_commitPathJs", [])]);
  1263. return self;},
  1264. args: [],
  1265. source: "testZorkCommitPathJsShouldBeJs\x0a\x09self assert: 'js' equals: zorkPackage commitPathJs",
  1266. messageSends: ["assert:equals:", "commitPathJs"],
  1267. referencedClasses: []
  1268. }),
  1269. smalltalk.PackageTest);
  1270. smalltalk.addMethod(
  1271. "_testZorkCommitPathStShouldBeSt",
  1272. smalltalk.method({
  1273. selector: "testZorkCommitPathStShouldBeSt",
  1274. category: 'tests',
  1275. fn: function (){
  1276. var self=this;
  1277. smalltalk.send(self, "_assert_equals_", ["st", smalltalk.send(self['@zorkPackage'], "_commitPathSt", [])]);
  1278. return self;},
  1279. args: [],
  1280. source: "testZorkCommitPathStShouldBeSt\x0a\x09self assert: 'st' equals: zorkPackage commitPathSt",
  1281. messageSends: ["assert:equals:", "commitPathSt"],
  1282. referencedClasses: []
  1283. }),
  1284. smalltalk.PackageTest);
  1285. smalltalk.addClass('PackageWithDefaultCommitPathChangedTest', smalltalk.PackageTest, [], 'Kernel-Tests');
  1286. smalltalk.addMethod(
  1287. "_setUp",
  1288. smalltalk.method({
  1289. selector: "setUp",
  1290. category: 'running',
  1291. fn: function (){
  1292. var self=this;
  1293. smalltalk.send(self, "_setUp", [], smalltalk.PackageWithDefaultCommitPathChangedTest.superclass || nil);
  1294. (function($rec){smalltalk.send($rec, "_defaultCommitPathJs_", ["javascripts/"]);return smalltalk.send($rec, "_defaultCommitPathSt_", ["smalltalk/"]);})((smalltalk.Package || Package));
  1295. return self;},
  1296. args: [],
  1297. source: "setUp\x0a\x09super setUp.\x0a\x0a\x09Package\x0a\x09\x09defaultCommitPathJs: 'javascripts/';\x0a\x09\x09defaultCommitPathSt: 'smalltalk/'.",
  1298. messageSends: ["setUp", "defaultCommitPathJs:", "defaultCommitPathSt:"],
  1299. referencedClasses: ["Package"]
  1300. }),
  1301. smalltalk.PackageWithDefaultCommitPathChangedTest);
  1302. smalltalk.addMethod(
  1303. "_testGrulCommitPathJsShouldBeServerGrulJs",
  1304. smalltalk.method({
  1305. selector: "testGrulCommitPathJsShouldBeServerGrulJs",
  1306. category: 'tests',
  1307. fn: function (){
  1308. var self=this;
  1309. smalltalk.send(self, "_assert_equals_", ["server/grul/js", smalltalk.send(self['@grulPackage'], "_commitPathJs", [])]);
  1310. return self;},
  1311. args: [],
  1312. source: "testGrulCommitPathJsShouldBeServerGrulJs\x0a\x09self assert: 'server/grul/js' equals: grulPackage commitPathJs",
  1313. messageSends: ["assert:equals:", "commitPathJs"],
  1314. referencedClasses: []
  1315. }),
  1316. smalltalk.PackageWithDefaultCommitPathChangedTest);
  1317. smalltalk.addMethod(
  1318. "_testGrulCommitPathStShouldBeGrulSt",
  1319. smalltalk.method({
  1320. selector: "testGrulCommitPathStShouldBeGrulSt",
  1321. category: 'tests',
  1322. fn: function (){
  1323. var self=this;
  1324. smalltalk.send(self, "_assert_equals_", ["grul/st", smalltalk.send(self['@grulPackage'], "_commitPathSt", [])]);
  1325. return self;},
  1326. args: [],
  1327. source: "testGrulCommitPathStShouldBeGrulSt\x0a\x09self assert: 'grul/st' equals: grulPackage commitPathSt",
  1328. messageSends: ["assert:equals:", "commitPathSt"],
  1329. referencedClasses: []
  1330. }),
  1331. smalltalk.PackageWithDefaultCommitPathChangedTest);
  1332. smalltalk.addMethod(
  1333. "_testZorkCommitPathJsShouldBeJavascript",
  1334. smalltalk.method({
  1335. selector: "testZorkCommitPathJsShouldBeJavascript",
  1336. category: 'tests',
  1337. fn: function (){
  1338. var self=this;
  1339. smalltalk.send(self, "_assert_equals_", ["javascripts/", smalltalk.send(self['@zorkPackage'], "_commitPathJs", [])]);
  1340. return self;},
  1341. args: [],
  1342. source: "testZorkCommitPathJsShouldBeJavascript\x0a\x09self assert: 'javascripts/' equals: zorkPackage commitPathJs",
  1343. messageSends: ["assert:equals:", "commitPathJs"],
  1344. referencedClasses: []
  1345. }),
  1346. smalltalk.PackageWithDefaultCommitPathChangedTest);
  1347. smalltalk.addMethod(
  1348. "_testZorkCommitPathStShouldBeSmalltalk",
  1349. smalltalk.method({
  1350. selector: "testZorkCommitPathStShouldBeSmalltalk",
  1351. category: 'tests',
  1352. fn: function (){
  1353. var self=this;
  1354. smalltalk.send(self, "_assert_equals_", ["smalltalk/", smalltalk.send(self['@zorkPackage'], "_commitPathSt", [])]);
  1355. return self;},
  1356. args: [],
  1357. source: "testZorkCommitPathStShouldBeSmalltalk\x0a\x09self assert: 'smalltalk/' equals: zorkPackage commitPathSt",
  1358. messageSends: ["assert:equals:", "commitPathSt"],
  1359. referencedClasses: []
  1360. }),
  1361. smalltalk.PackageWithDefaultCommitPathChangedTest);
  1362. smalltalk.addMethod(
  1363. "_shouldInheritSelectors",
  1364. smalltalk.method({
  1365. selector: "shouldInheritSelectors",
  1366. category: 'accessing',
  1367. fn: function (){
  1368. var self=this;
  1369. return false;
  1370. return self;},
  1371. args: [],
  1372. source: "shouldInheritSelectors\x0a\x09^ false",
  1373. messageSends: [],
  1374. referencedClasses: []
  1375. }),
  1376. smalltalk.PackageWithDefaultCommitPathChangedTest.klass);
  1377. smalltalk.addClass('PointTest', smalltalk.TestCase, [], 'Kernel-Tests');
  1378. smalltalk.addMethod(
  1379. "_testAccessing",
  1380. smalltalk.method({
  1381. selector: "testAccessing",
  1382. category: 'tests',
  1383. fn: function (){
  1384. var self=this;
  1385. smalltalk.send(self, "_assert_equals_", [smalltalk.send(smalltalk.send((smalltalk.Point || Point), "_x_y_", [(3), (4)]), "_x", []), (3)]);
  1386. smalltalk.send(self, "_assert_equals_", [smalltalk.send(smalltalk.send((smalltalk.Point || Point), "_x_y_", [(3), (4)]), "_y", []), (4)]);
  1387. smalltalk.send(self, "_assert_equals_", [smalltalk.send(smalltalk.send(smalltalk.send((smalltalk.Point || Point), "_new", []), "_x_", [(3)]), "_x", []), (3)]);
  1388. smalltalk.send(self, "_assert_equals_", [smalltalk.send(smalltalk.send(smalltalk.send((smalltalk.Point || Point), "_new", []), "_y_", [(4)]), "_y", []), (4)]);
  1389. return self;},
  1390. args: [],
  1391. source: "testAccessing\x0a\x09self assert: (Point x: 3 y: 4) x equals: 3.\x0a\x09self assert: (Point x: 3 y: 4) y equals: 4.\x0a\x09self assert: (Point new x: 3) x equals: 3.\x0a\x09self assert: (Point new y: 4) y equals: 4",
  1392. messageSends: ["assert:equals:", "x", "x:y:", "y", "x:", "new", "y:"],
  1393. referencedClasses: ["Point"]
  1394. }),
  1395. smalltalk.PointTest);
  1396. smalltalk.addMethod(
  1397. "_testArithmetic",
  1398. smalltalk.method({
  1399. selector: "testArithmetic",
  1400. category: 'tests',
  1401. fn: function (){
  1402. var self=this;
  1403. smalltalk.send(self, "_assert_equals_", [((($receiver = smalltalk.send((3), "__at", [(4)])).klass === smalltalk.Number) ? $receiver *smalltalk.send((3), "__at", [(4)]) : smalltalk.send($receiver, "__star", [smalltalk.send((3), "__at", [(4)])])), smalltalk.send((smalltalk.Point || Point), "_x_y_", [(9), (16)])]);
  1404. smalltalk.send(self, "_assert_equals_", [((($receiver = smalltalk.send((3), "__at", [(4)])).klass === smalltalk.Number) ? $receiver +smalltalk.send((3), "__at", [(4)]) : smalltalk.send($receiver, "__plus", [smalltalk.send((3), "__at", [(4)])])), smalltalk.send((smalltalk.Point || Point), "_x_y_", [(6), (8)])]);
  1405. smalltalk.send(self, "_assert_equals_", [((($receiver = smalltalk.send((3), "__at", [(4)])).klass === smalltalk.Number) ? $receiver -smalltalk.send((3), "__at", [(4)]) : smalltalk.send($receiver, "__minus", [smalltalk.send((3), "__at", [(4)])])), smalltalk.send((smalltalk.Point || Point), "_x_y_", [(0), (0)])]);
  1406. smalltalk.send(self, "_assert_equals_", [((($receiver = smalltalk.send((6), "__at", [(8)])).klass === smalltalk.Number) ? $receiver /smalltalk.send((3), "__at", [(4)]) : smalltalk.send($receiver, "__slash", [smalltalk.send((3), "__at", [(4)])])), smalltalk.send((smalltalk.Point || Point), "_x_y_", [(2), (2)])]);
  1407. return self;},
  1408. args: [],
  1409. source: "testArithmetic\x0a\x09self assert: 3@4 * (3@4 ) equals: (Point x: 9 y: 16).\x0a\x09self assert: 3@4 + (3@4 ) equals: (Point x: 6 y: 8).\x0a\x09self assert: 3@4 - (3@4 ) equals: (Point x: 0 y: 0).\x0a\x09self assert: 6@8 / (3@4 ) equals: (Point x: 2 y: 2)",
  1410. messageSends: ["assert:equals:", "*", "@", "x:y:", "+", "-", "/"],
  1411. referencedClasses: ["Point"]
  1412. }),
  1413. smalltalk.PointTest);
  1414. smalltalk.addMethod(
  1415. "_testAt",
  1416. smalltalk.method({
  1417. selector: "testAt",
  1418. category: 'tests',
  1419. fn: function (){
  1420. var self=this;
  1421. smalltalk.send(self, "_assert_equals_", [smalltalk.send((3), "__at", [(4)]), smalltalk.send((smalltalk.Point || Point), "_x_y_", [(3), (4)])]);
  1422. return self;},
  1423. args: [],
  1424. source: "testAt\x0a\x09self assert: 3@4 equals: (Point x: 3 y: 4)",
  1425. messageSends: ["assert:equals:", "@", "x:y:"],
  1426. referencedClasses: ["Point"]
  1427. }),
  1428. smalltalk.PointTest);
  1429. smalltalk.addMethod(
  1430. "_testEgality",
  1431. smalltalk.method({
  1432. selector: "testEgality",
  1433. category: 'tests',
  1434. fn: function (){
  1435. var self=this;
  1436. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send((3), "__at", [(4)]), "__eq", [smalltalk.send((3), "__at", [(4)])])]);
  1437. smalltalk.send(self, "_deny_", [smalltalk.send(smalltalk.send((3), "__at", [(5)]), "__eq", [smalltalk.send((3), "__at", [(6)])])]);
  1438. return self;},
  1439. args: [],
  1440. source: "testEgality\x0a\x09self assert: 3@4 = (3@4).\x0a\x09self deny: 3@5 = (3@6)",
  1441. messageSends: ["assert:", "=", "@", "deny:"],
  1442. referencedClasses: []
  1443. }),
  1444. smalltalk.PointTest);
  1445. smalltalk.addMethod(
  1446. "_testTranslateBy",
  1447. smalltalk.method({
  1448. selector: "testTranslateBy",
  1449. category: 'tests',
  1450. fn: function (){
  1451. var self=this;
  1452. smalltalk.send(self, "_assert_equals_", [smalltalk.send((3), "__at", [(4)]), smalltalk.send(smalltalk.send((3), "__at", [(3)]), "_translateBy_", [smalltalk.send((0), "__at", [(1)])])]);
  1453. smalltalk.send(self, "_assert_equals_", [smalltalk.send((3), "__at", [(2)]), smalltalk.send(smalltalk.send((3), "__at", [(3)]), "_translateBy_", [smalltalk.send((0), "__at", [smalltalk.send((1), "_negated", [])])])]);
  1454. smalltalk.send(self, "_assert_equals_", [smalltalk.send((5), "__at", [(6)]), smalltalk.send(smalltalk.send((3), "__at", [(3)]), "_translateBy_", [smalltalk.send((2), "__at", [(3)])])]);
  1455. smalltalk.send(self, "_assert_equals_", [smalltalk.send((0), "__at", [(3)]), smalltalk.send(smalltalk.send((3), "__at", [(3)]), "_translateBy_", [smalltalk.send(smalltalk.send((3), "_negated", []), "__at", [(0)])])]);
  1456. return self;},
  1457. args: [],
  1458. source: "testTranslateBy\x0a\x09self assert: 3@4 equals: (3@3 translateBy: 0@1).\x0a\x09self assert: 3@2 equals: (3@3 translateBy: 0@1 negated).\x0a\x09self assert: 5@6 equals: (3@3 translateBy: 2@3).\x0a\x09self assert: 0@3 equals: (3@3 translateBy: 3 negated @0).",
  1459. messageSends: ["assert:equals:", "@", "translateBy:", "negated"],
  1460. referencedClasses: []
  1461. }),
  1462. smalltalk.PointTest);
  1463. smalltalk.addClass('RandomTest', smalltalk.TestCase, [], 'Kernel-Tests');
  1464. smalltalk.addMethod(
  1465. "_textNext",
  1466. smalltalk.method({
  1467. selector: "textNext",
  1468. category: 'tests',
  1469. fn: function (){
  1470. var self=this;
  1471. smalltalk.send((10000), "_timesRepeat_", [(function(){var current=nil;
  1472. var next=nil;
  1473. (next=smalltalk.send(smalltalk.send((smalltalk.Random || Random), "_new", []), "_next", []));smalltalk.send(self, "_assert_", [((($receiver = next).klass === smalltalk.Number) ? $receiver >=(0) : smalltalk.send($receiver, "__gt_eq", [(0)]))]);smalltalk.send(self, "_assert_", [((($receiver = next).klass === smalltalk.Number) ? $receiver <(1) : smalltalk.send($receiver, "__lt", [(1)]))]);smalltalk.send(self, "_deny_", [smalltalk.send(current, "__eq", [next])]);return smalltalk.send(next, "__eq", [current]);})]);
  1474. return self;},
  1475. args: [],
  1476. source: "textNext\x0a\x0a\x0910000 timesRepeat: [\x0a\x09\x09\x09| current next | \x0a\x09\x09\x09next := Random new next.\x0a\x09\x09\x09self assert: (next >= 0).\x0a\x09\x09\x09self assert: (next < 1).\x0a\x09\x09\x09self deny: current = next.\x0a\x09\x09\x09next = current]",
  1477. messageSends: ["timesRepeat:", "next", "new", "assert:", ">=", "<", "deny:", "="],
  1478. referencedClasses: ["Random"]
  1479. }),
  1480. smalltalk.RandomTest);
  1481. smalltalk.addClass('SetTest', smalltalk.TestCase, [], 'Kernel-Tests');
  1482. smalltalk.addMethod(
  1483. "_testAddRemove",
  1484. smalltalk.method({
  1485. selector: "testAddRemove",
  1486. category: 'tests',
  1487. fn: function (){
  1488. var self=this;
  1489. var set=nil;
  1490. (set=smalltalk.send((smalltalk.Set || Set), "_new", []));
  1491. smalltalk.send(self, "_assert_", [smalltalk.send(set, "_isEmpty", [])]);
  1492. smalltalk.send(set, "_add_", [(3)]);
  1493. smalltalk.send(self, "_assert_", [smalltalk.send(set, "_includes_", [(3)])]);
  1494. smalltalk.send(set, "_add_", [(5)]);
  1495. smalltalk.send(self, "_assert_", [smalltalk.send(set, "_includes_", [(5)])]);
  1496. smalltalk.send(set, "_remove_", [(3)]);
  1497. smalltalk.send(self, "_deny_", [smalltalk.send(set, "_includes_", [(3)])]);
  1498. return self;},
  1499. args: [],
  1500. source: "testAddRemove\x0a\x09| set |\x0a\x09set := Set new.\x0a\x09\x0a\x09self assert: set isEmpty.\x0a\x0a\x09set add: 3.\x0a\x09self assert: (set includes: 3).\x0a\x0a\x09set add: 5.\x0a\x09self assert: (set includes: 5).\x0a\x0a\x09set remove: 3.\x0a\x09self deny: (set includes: 3)",
  1501. messageSends: ["new", "assert:", "isEmpty", "add:", "includes:", "remove:", "deny:"],
  1502. referencedClasses: ["Set"]
  1503. }),
  1504. smalltalk.SetTest);
  1505. smalltalk.addMethod(
  1506. "_testAt",
  1507. smalltalk.method({
  1508. selector: "testAt",
  1509. category: 'tests',
  1510. fn: function (){
  1511. var self=this;
  1512. smalltalk.send(self, "_should_raise_", [(function(){return smalltalk.send(smalltalk.send((smalltalk.Set || Set), "_new", []), "_at_put_", [(1), (2)]);}), (smalltalk.Error || Error)]);
  1513. return self;},
  1514. args: [],
  1515. source: "testAt\x0a\x09self should: [Set new at: 1 put: 2] raise: Error",
  1516. messageSends: ["should:raise:", "at:put:", "new"],
  1517. referencedClasses: ["Set", "Error"]
  1518. }),
  1519. smalltalk.SetTest);
  1520. smalltalk.addMethod(
  1521. "_testSize",
  1522. smalltalk.method({
  1523. selector: "testSize",
  1524. category: 'tests',
  1525. fn: function (){
  1526. var self=this;
  1527. smalltalk.send(self, "_assert_equals_", [smalltalk.send(smalltalk.send((smalltalk.Set || Set), "_new", []), "_size", []), (0)]);
  1528. smalltalk.send(self, "_assert_equals_", [smalltalk.send(smalltalk.send((smalltalk.Set || Set), "_withAll_", [[(1), (2), (3), (4)]]), "_size", []), (4)]);
  1529. smalltalk.send(self, "_assert_equals_", [smalltalk.send(smalltalk.send((smalltalk.Set || Set), "_withAll_", [[(1), (1), (1), (1)]]), "_size", []), (1)]);
  1530. return self;},
  1531. args: [],
  1532. source: "testSize\x0a\x09self assert: Set new size equals: 0.\x0a\x09self assert: (Set withAll: #(1 2 3 4)) size equals: 4.\x0a\x09self assert: (Set withAll: #(1 1 1 1)) size equals: 1",
  1533. messageSends: ["assert:equals:", "size", "new", "withAll:"],
  1534. referencedClasses: ["Set"]
  1535. }),
  1536. smalltalk.SetTest);
  1537. smalltalk.addMethod(
  1538. "_testUnicity",
  1539. smalltalk.method({
  1540. selector: "testUnicity",
  1541. category: 'tests',
  1542. fn: function (){
  1543. var self=this;
  1544. var set=nil;
  1545. (set=smalltalk.send((smalltalk.Set || Set), "_new", []));
  1546. smalltalk.send(set, "_add_", [(21)]);
  1547. smalltalk.send(set, "_add_", ["hello"]);
  1548. smalltalk.send(set, "_add_", [(21)]);
  1549. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(set, "_size", []), "__eq", [(2)])]);
  1550. smalltalk.send(set, "_add_", ["hello"]);
  1551. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(set, "_size", []), "__eq", [(2)])]);
  1552. smalltalk.send(self, "_assert_equals_", [smalltalk.send(set, "_asArray", []), [(21), "hello"]]);
  1553. return self;},
  1554. args: [],
  1555. source: "testUnicity\x0a\x09| set |\x0a\x09set := Set new.\x0a\x09set add: 21.\x0a\x09set add: 'hello'.\x0a\x0a\x09set add: 21.\x0a\x09self assert: set size = 2.\x0a\x09\x0a\x09set add: 'hello'.\x0a\x09self assert: set size = 2.\x0a\x0a\x09self assert: set asArray equals: #(21 'hello')",
  1556. messageSends: ["new", "add:", "assert:", "=", "size", "assert:equals:", "asArray"],
  1557. referencedClasses: ["Set"]
  1558. }),
  1559. smalltalk.SetTest);
  1560. smalltalk.addClass('StringTest', smalltalk.TestCase, [], 'Kernel-Tests');
  1561. smalltalk.addMethod(
  1562. "_testAddRemove",
  1563. smalltalk.method({
  1564. selector: "testAddRemove",
  1565. category: 'tests',
  1566. fn: function (){
  1567. var self=this;
  1568. smalltalk.send(self, "_should_raise_", [(function(){return smalltalk.send("hello", "_add_", ["a"]);}), (smalltalk.Error || Error)]);
  1569. smalltalk.send(self, "_should_raise_", [(function(){return smalltalk.send("hello", "_remove_", ["h"]);}), (smalltalk.Error || Error)]);
  1570. return self;},
  1571. args: [],
  1572. source: "testAddRemove\x0a\x09self should: ['hello' add: 'a'] raise: Error.\x0a\x09self should: ['hello' remove: 'h'] raise: Error",
  1573. messageSends: ["should:raise:", "add:", "remove:"],
  1574. referencedClasses: ["Error"]
  1575. }),
  1576. smalltalk.StringTest);
  1577. smalltalk.addMethod(
  1578. "_testAsArray",
  1579. smalltalk.method({
  1580. selector: "testAsArray",
  1581. category: 'tests',
  1582. fn: function (){
  1583. var self=this;
  1584. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send("hello", "_asArray", []), "__eq", [["h", "e", "l", "l", "o"]])]);
  1585. return self;},
  1586. args: [],
  1587. source: "testAsArray\x0a\x09self assert: 'hello' asArray = #('h' 'e' 'l' 'l' 'o').",
  1588. messageSends: ["assert:", "=", "asArray"],
  1589. referencedClasses: []
  1590. }),
  1591. smalltalk.StringTest);
  1592. smalltalk.addMethod(
  1593. "_testAt",
  1594. smalltalk.method({
  1595. selector: "testAt",
  1596. category: 'tests',
  1597. fn: function (){
  1598. var self=this;
  1599. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send("hello", "_at_", [(1)]), "__eq", ["h"])]);
  1600. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send("hello", "_at_", [(5)]), "__eq", ["o"])]);
  1601. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send("hello", "_at_ifAbsent_", [(6), (function(){return nil;})]), "__eq", [nil])]);
  1602. return self;},
  1603. args: [],
  1604. source: "testAt\x0a\x09self assert: ('hello' at: 1) = 'h'.\x0a\x09self assert: ('hello' at: 5) = 'o'.\x0a\x09self assert: ('hello' at: 6 ifAbsent: [nil]) = nil",
  1605. messageSends: ["assert:", "=", "at:", "at:ifAbsent:"],
  1606. referencedClasses: []
  1607. }),
  1608. smalltalk.StringTest);
  1609. smalltalk.addMethod(
  1610. "_testAtPut",
  1611. smalltalk.method({
  1612. selector: "testAtPut",
  1613. category: 'tests',
  1614. fn: function (){
  1615. var self=this;
  1616. smalltalk.send(self, "_should_raise_", [(function(){return smalltalk.send("hello", "_at_put_", [(1), "a"]);}), (smalltalk.Error || Error)]);
  1617. return self;},
  1618. args: [],
  1619. source: "testAtPut\x0a\x09\x22String instances are read-only\x22\x0a\x09self should: ['hello' at: 1 put: 'a'] raise: Error",
  1620. messageSends: ["should:raise:", "at:put:"],
  1621. referencedClasses: ["Error"]
  1622. }),
  1623. smalltalk.StringTest);
  1624. smalltalk.addMethod(
  1625. "_testCopyWithoutAll",
  1626. smalltalk.method({
  1627. selector: "testCopyWithoutAll",
  1628. category: 'tests',
  1629. fn: function (){
  1630. var self=this;
  1631. smalltalk.send(self, "_assert_equals_", ["hello world", smalltalk.send("*hello* *world*", "_copyWithoutAll_", ["*"])]);
  1632. return self;},
  1633. args: [],
  1634. source: "testCopyWithoutAll\x0a\x09self \x0a\x09\x09assert: 'hello world' \x0a\x09\x09equals: ('*hello* *world*' copyWithoutAll: '*')",
  1635. messageSends: ["assert:equals:", "copyWithoutAll:"],
  1636. referencedClasses: []
  1637. }),
  1638. smalltalk.StringTest);
  1639. smalltalk.addMethod(
  1640. "_testEquality",
  1641. smalltalk.method({
  1642. selector: "testEquality",
  1643. category: 'tests',
  1644. fn: function (){
  1645. var self=this;
  1646. smalltalk.send(self, "_assert_", [smalltalk.send("hello", "__eq", ["hello"])]);
  1647. smalltalk.send(self, "_deny_", [smalltalk.send("hello", "__eq", ["world"])]);
  1648. smalltalk.send(self, "_assert_", [smalltalk.send("hello", "__eq", [smalltalk.send("hello", "_yourself", [])])]);
  1649. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send("hello", "_yourself", []), "__eq", ["hello"])]);
  1650. smalltalk.send(self, "_deny_", [smalltalk.send("", "__eq", [(0)])]);
  1651. return self;},
  1652. args: [],
  1653. source: "testEquality\x0a\x09self assert: 'hello' = 'hello'.\x0a\x09self deny: 'hello' = 'world'.\x0a\x0a\x09self assert: 'hello' = 'hello' yourself.\x0a\x09self assert: 'hello' yourself = 'hello'.\x0a\x0a\x09\x22test JS falsy value\x22\x0a\x09self deny: '' = 0",
  1654. messageSends: ["assert:", "=", "deny:", "yourself"],
  1655. referencedClasses: []
  1656. }),
  1657. smalltalk.StringTest);
  1658. smalltalk.addMethod(
  1659. "_testIdentity",
  1660. smalltalk.method({
  1661. selector: "testIdentity",
  1662. category: 'tests',
  1663. fn: function (){
  1664. var self=this;
  1665. smalltalk.send(self, "_assert_", [smalltalk.send("hello", "__eq_eq", ["hello"])]);
  1666. smalltalk.send(self, "_deny_", [smalltalk.send("hello", "__eq_eq", ["world"])]);
  1667. smalltalk.send(self, "_assert_", [smalltalk.send("hello", "__eq_eq", [smalltalk.send("hello", "_yourself", [])])]);
  1668. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send("hello", "_yourself", []), "__eq_eq", ["hello"])]);
  1669. smalltalk.send(self, "_deny_", [smalltalk.send("", "__eq_eq", [(0)])]);
  1670. return self;},
  1671. args: [],
  1672. source: "testIdentity\x0a\x09self assert: 'hello' == 'hello'.\x0a\x09self deny: 'hello' == 'world'.\x0a\x0a\x09self assert: 'hello' == 'hello' yourself.\x0a\x09self assert: 'hello' yourself == 'hello'.\x0a\x0a\x09\x22test JS falsy value\x22\x0a\x09self deny: '' == 0",
  1673. messageSends: ["assert:", "==", "deny:", "yourself"],
  1674. referencedClasses: []
  1675. }),
  1676. smalltalk.StringTest);
  1677. smalltalk.addMethod(
  1678. "_testIncludesSubString",
  1679. smalltalk.method({
  1680. selector: "testIncludesSubString",
  1681. category: 'tests',
  1682. fn: function (){
  1683. var self=this;
  1684. smalltalk.send(self, "_assert_", [smalltalk.send("amber", "_includesSubString_", ["ber"])]);
  1685. smalltalk.send(self, "_deny_", [smalltalk.send("amber", "_includesSubString_", ["zork"])]);
  1686. return self;},
  1687. args: [],
  1688. source: "testIncludesSubString\x0a\x09self assert: ('amber' includesSubString: 'ber').\x0a\x09self deny: ('amber' includesSubString: 'zork').",
  1689. messageSends: ["assert:", "includesSubString:", "deny:"],
  1690. referencedClasses: []
  1691. }),
  1692. smalltalk.StringTest);
  1693. smalltalk.addMethod(
  1694. "_testJoin",
  1695. smalltalk.method({
  1696. selector: "testJoin",
  1697. category: 'tests',
  1698. fn: function (){
  1699. var self=this;
  1700. smalltalk.send(self, "_assert_equals_", ["hello,world", smalltalk.send(",", "_join_", [["hello", "world"]])]);
  1701. return self;},
  1702. args: [],
  1703. source: "testJoin\x0a\x09self assert: 'hello,world' equals: (',' join: #('hello' 'world'))",
  1704. messageSends: ["assert:equals:", "join:"],
  1705. referencedClasses: []
  1706. }),
  1707. smalltalk.StringTest);
  1708. smalltalk.addMethod(
  1709. "_testSize",
  1710. smalltalk.method({
  1711. selector: "testSize",
  1712. category: 'tests',
  1713. fn: function (){
  1714. var self=this;
  1715. smalltalk.send(self, "_assert_equals_", [smalltalk.send("smalltalk", "_size", []), (9)]);
  1716. smalltalk.send(self, "_assert_equals_", [smalltalk.send("", "_size", []), (0)]);
  1717. return self;},
  1718. args: [],
  1719. source: "testSize\x0a\x09self assert: 'smalltalk' size equals: 9.\x0a\x09self assert: '' size equals: 0",
  1720. messageSends: ["assert:equals:", "size"],
  1721. referencedClasses: []
  1722. }),
  1723. smalltalk.StringTest);
  1724. smalltalk.addMethod(
  1725. "_testStreamContents",
  1726. smalltalk.method({
  1727. selector: "testStreamContents",
  1728. category: 'tests',
  1729. fn: function (){
  1730. var self=this;
  1731. smalltalk.send(self, "_assert_equals_", ["hello world", smalltalk.send((smalltalk.String || String), "_streamContents_", [(function(aStream){return (function($rec){smalltalk.send($rec, "_nextPutAll_", ["hello"]);smalltalk.send($rec, "_space", []);return smalltalk.send($rec, "_nextPutAll_", ["world"]);})(aStream);})])]);
  1732. return self;},
  1733. args: [],
  1734. source: "testStreamContents\x0a\x09self \x0a\x09\x09assert: 'hello world' \x0a\x09\x09equals: (String streamContents: [:aStream| aStream \x0a \x09\x09\x09\x09\x09nextPutAll: 'hello'; space; \x0a \x09\x09\x09\x09\x09nextPutAll: 'world'])",
  1735. messageSends: ["assert:equals:", "streamContents:", "nextPutAll:", "space"],
  1736. referencedClasses: ["String"]
  1737. }),
  1738. smalltalk.StringTest);
  1739. smalltalk.addClass('SymbolTest', smalltalk.TestCase, [], 'Kernel-Tests');
  1740. smalltalk.addMethod(
  1741. "_testAsString",
  1742. smalltalk.method({
  1743. selector: "testAsString",
  1744. category: 'tests',
  1745. fn: function (){
  1746. var self=this;
  1747. smalltalk.send(self, "_assert_equals_", [smalltalk.send(smalltalk.symbolFor("hello"), "_asString", []), "hello"]);
  1748. return self;},
  1749. args: [],
  1750. source: "testAsString\x0a\x09self assert: #hello asString equals: 'hello'",
  1751. messageSends: ["assert:equals:", "asString"],
  1752. referencedClasses: []
  1753. }),
  1754. smalltalk.SymbolTest);
  1755. smalltalk.addMethod(
  1756. "_testAsSymbol",
  1757. smalltalk.method({
  1758. selector: "testAsSymbol",
  1759. category: 'tests',
  1760. fn: function (){
  1761. var self=this;
  1762. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.symbolFor("hello"), "__eq_eq", [smalltalk.send(smalltalk.symbolFor("hello"), "_asSymbol", [])])]);
  1763. return self;},
  1764. args: [],
  1765. source: "testAsSymbol\x0a\x09self assert: #hello == #hello asSymbol",
  1766. messageSends: ["assert:", "==", "asSymbol"],
  1767. referencedClasses: []
  1768. }),
  1769. smalltalk.SymbolTest);
  1770. smalltalk.addMethod(
  1771. "_testAt",
  1772. smalltalk.method({
  1773. selector: "testAt",
  1774. category: 'tests',
  1775. fn: function (){
  1776. var self=this;
  1777. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(smalltalk.symbolFor("hello"), "_at_", [(1)]), "__eq", ["h"])]);
  1778. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(smalltalk.symbolFor("hello"), "_at_", [(5)]), "__eq", ["o"])]);
  1779. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(smalltalk.symbolFor("hello"), "_at_ifAbsent_", [(6), (function(){return nil;})]), "__eq", [nil])]);
  1780. return self;},
  1781. args: [],
  1782. source: "testAt\x0a\x09self assert: (#hello at: 1) = 'h'.\x0a\x09self assert: (#hello at: 5) = 'o'.\x0a\x09self assert: (#hello at: 6 ifAbsent: [nil]) = nil",
  1783. messageSends: ["assert:", "=", "at:", "at:ifAbsent:"],
  1784. referencedClasses: []
  1785. }),
  1786. smalltalk.SymbolTest);
  1787. smalltalk.addMethod(
  1788. "_testAtPut",
  1789. smalltalk.method({
  1790. selector: "testAtPut",
  1791. category: 'tests',
  1792. fn: function (){
  1793. var self=this;
  1794. smalltalk.send(self, "_should_raise_", [(function(){return smalltalk.send("hello", "_at_put_", [(1), "a"]);}), (smalltalk.Error || Error)]);
  1795. return self;},
  1796. args: [],
  1797. source: "testAtPut\x0a\x09\x22Symbol instances are read-only\x22\x0a\x09self should: ['hello' at: 1 put: 'a'] raise: Error",
  1798. messageSends: ["should:raise:", "at:put:"],
  1799. referencedClasses: ["Error"]
  1800. }),
  1801. smalltalk.SymbolTest);
  1802. smalltalk.addMethod(
  1803. "_testComparing",
  1804. smalltalk.method({
  1805. selector: "testComparing",
  1806. category: 'tests',
  1807. fn: function (){
  1808. var self=this;
  1809. smalltalk.send(self, "_assert_", [((($receiver = smalltalk.symbolFor("ab")).klass === smalltalk.Number) ? $receiver >smalltalk.symbolFor("aa") : smalltalk.send($receiver, "__gt", [smalltalk.symbolFor("aa")]))]);
  1810. smalltalk.send(self, "_deny_", [((($receiver = smalltalk.symbolFor("ab")).klass === smalltalk.Number) ? $receiver >smalltalk.symbolFor("ba") : smalltalk.send($receiver, "__gt", [smalltalk.symbolFor("ba")]))]);
  1811. smalltalk.send(self, "_assert_", [((($receiver = smalltalk.symbolFor("ab")).klass === smalltalk.Number) ? $receiver <smalltalk.symbolFor("ba") : smalltalk.send($receiver, "__lt", [smalltalk.symbolFor("ba")]))]);
  1812. smalltalk.send(self, "_deny_", [((($receiver = smalltalk.symbolFor("bb")).klass === smalltalk.Number) ? $receiver <smalltalk.symbolFor("ba") : smalltalk.send($receiver, "__lt", [smalltalk.symbolFor("ba")]))]);
  1813. smalltalk.send(self, "_assert_", [((($receiver = smalltalk.symbolFor("ab")).klass === smalltalk.Number) ? $receiver >=smalltalk.symbolFor("aa") : smalltalk.send($receiver, "__gt_eq", [smalltalk.symbolFor("aa")]))]);
  1814. smalltalk.send(self, "_deny_", [((($receiver = smalltalk.symbolFor("ab")).klass === smalltalk.Number) ? $receiver >=smalltalk.symbolFor("ba") : smalltalk.send($receiver, "__gt_eq", [smalltalk.symbolFor("ba")]))]);
  1815. smalltalk.send(self, "_assert_", [((($receiver = smalltalk.symbolFor("ab")).klass === smalltalk.Number) ? $receiver <=smalltalk.symbolFor("ba") : smalltalk.send($receiver, "__lt_eq", [smalltalk.symbolFor("ba")]))]);
  1816. smalltalk.send(self, "_deny_", [((($receiver = smalltalk.symbolFor("bb")).klass === smalltalk.Number) ? $receiver <=smalltalk.symbolFor("ba") : smalltalk.send($receiver, "__lt_eq", [smalltalk.symbolFor("ba")]))]);
  1817. return self;},
  1818. args: [],
  1819. source: "testComparing\x0a\x09self assert: #ab > #aa.\x0a\x09self deny: #ab > #ba.\x0a\x0a\x09self assert: #ab < #ba.\x0a\x09self deny: #bb < #ba.\x0a\x0a\x09self assert: #ab >= #aa.\x0a\x09self deny: #ab >= #ba.\x0a\x0a\x09self assert: #ab <= #ba.\x0a\x09self deny: #bb <= #ba",
  1820. messageSends: ["assert:", ">", "deny:", "<", ">=", "<="],
  1821. referencedClasses: []
  1822. }),
  1823. smalltalk.SymbolTest);
  1824. smalltalk.addMethod(
  1825. "_testCopying",
  1826. smalltalk.method({
  1827. selector: "testCopying",
  1828. category: 'tests',
  1829. fn: function (){
  1830. var self=this;
  1831. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(smalltalk.symbolFor("hello"), "_copy", []), "__eq_eq", [smalltalk.symbolFor("hello")])]);
  1832. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(smalltalk.symbolFor("hello"), "_deepCopy", []), "__eq_eq", [smalltalk.symbolFor("hello")])]);
  1833. return self;},
  1834. args: [],
  1835. source: "testCopying\x0a\x09self assert: #hello copy == #hello.\x0a\x09self assert: #hello deepCopy == #hello",
  1836. messageSends: ["assert:", "==", "copy", "deepCopy"],
  1837. referencedClasses: []
  1838. }),
  1839. smalltalk.SymbolTest);
  1840. smalltalk.addMethod(
  1841. "_testEquality",
  1842. smalltalk.method({
  1843. selector: "testEquality",
  1844. category: 'tests',
  1845. fn: function (){
  1846. var self=this;
  1847. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.symbolFor("hello"), "__eq", [smalltalk.symbolFor("hello")])]);
  1848. smalltalk.send(self, "_deny_", [smalltalk.send(smalltalk.symbolFor("hello"), "__eq", [smalltalk.symbolFor("world")])]);
  1849. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.symbolFor("hello"), "__eq", [smalltalk.send(smalltalk.symbolFor("hello"), "_yourself", [])])]);
  1850. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(smalltalk.symbolFor("hello"), "_yourself", []), "__eq", [smalltalk.symbolFor("hello")])]);
  1851. smalltalk.send(self, "_deny_", [smalltalk.send(smalltalk.symbolFor("hello"), "__eq", ["hello"])]);
  1852. smalltalk.send(self, "_deny_", [smalltalk.send("hello", "__eq", [smalltalk.symbolFor("hello")])]);
  1853. return self;},
  1854. args: [],
  1855. source: "testEquality\x0a\x09self assert: #hello = #hello.\x0a\x09self deny: #hello = #world.\x0a\x0a\x09self assert: #hello = #hello yourself.\x0a\x09self assert: #hello yourself = #hello.\x0a\x0a\x09self deny: #hello = 'hello'.\x0a\x09self deny: 'hello' = #hello.",
  1856. messageSends: ["assert:", "=", "deny:", "yourself"],
  1857. referencedClasses: []
  1858. }),
  1859. smalltalk.SymbolTest);
  1860. smalltalk.addMethod(
  1861. "_testIdentity",
  1862. smalltalk.method({
  1863. selector: "testIdentity",
  1864. category: 'tests',
  1865. fn: function (){
  1866. var self=this;
  1867. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.symbolFor("hello"), "__eq_eq", [smalltalk.symbolFor("hello")])]);
  1868. smalltalk.send(self, "_deny_", [smalltalk.send(smalltalk.symbolFor("hello"), "__eq_eq", [smalltalk.symbolFor("world")])]);
  1869. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.symbolFor("hello"), "__eq", [smalltalk.send(smalltalk.symbolFor("hello"), "_yourself", [])])]);
  1870. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(smalltalk.symbolFor("hello"), "_yourself", []), "__eq", [smalltalk.send(smalltalk.send(smalltalk.symbolFor("hello"), "_asString", []), "_asSymbol", [])])]);
  1871. return self;},
  1872. args: [],
  1873. source: "testIdentity\x0a\x09self assert: #hello == #hello.\x0a\x09self deny: #hello == #world.\x0a\x0a\x09self assert: #hello = #hello yourself.\x0a\x09self assert: #hello yourself = #hello asString asSymbol",
  1874. messageSends: ["assert:", "==", "deny:", "=", "yourself", "asSymbol", "asString"],
  1875. referencedClasses: []
  1876. }),
  1877. smalltalk.SymbolTest);
  1878. smalltalk.addMethod(
  1879. "_testIsSymbolIsString",
  1880. smalltalk.method({
  1881. selector: "testIsSymbolIsString",
  1882. category: 'tests',
  1883. fn: function (){
  1884. var self=this;
  1885. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.symbolFor("hello"), "_isSymbol", [])]);
  1886. smalltalk.send(self, "_deny_", [smalltalk.send("hello", "_isSymbol", [])]);
  1887. smalltalk.send(self, "_deny_", [smalltalk.send(smalltalk.symbolFor("hello"), "_isString", [])]);
  1888. smalltalk.send(self, "_assert_", [smalltalk.send("hello", "_isString", [])]);
  1889. return self;},
  1890. args: [],
  1891. source: "testIsSymbolIsString\x0a\x09self assert: #hello isSymbol.\x0a\x09self deny: 'hello' isSymbol.\x0a\x09self deny: #hello isString.\x0a\x09self assert: 'hello' isString",
  1892. messageSends: ["assert:", "isSymbol", "deny:", "isString"],
  1893. referencedClasses: []
  1894. }),
  1895. smalltalk.SymbolTest);
  1896. smalltalk.addMethod(
  1897. "_testSize",
  1898. smalltalk.method({
  1899. selector: "testSize",
  1900. category: 'tests',
  1901. fn: function (){
  1902. var self=this;
  1903. smalltalk.send(self, "_assert_equals_", [smalltalk.send(smalltalk.symbolFor("a"), "_size", []), (1)]);
  1904. smalltalk.send(self, "_assert_equals_", [smalltalk.send(smalltalk.symbolFor("aaaaa"), "_size", []), (5)]);
  1905. return self;},
  1906. args: [],
  1907. source: "testSize\x0a\x09self assert: #a size equals: 1.\x0a\x09self assert: #aaaaa size equals: 5",
  1908. messageSends: ["assert:equals:", "size"],
  1909. referencedClasses: []
  1910. }),
  1911. smalltalk.SymbolTest);
  1912. smalltalk.addClass('UndefinedTest', smalltalk.TestCase, [], 'Kernel-Tests');
  1913. smalltalk.addMethod(
  1914. "_testCopying",
  1915. smalltalk.method({
  1916. selector: "testCopying",
  1917. category: 'tests',
  1918. fn: function (){
  1919. var self=this;
  1920. smalltalk.send(self, "_assert_equals_", [smalltalk.send(nil, "_copy", []), nil]);
  1921. return self;},
  1922. args: [],
  1923. source: "testCopying\x0a\x09self assert: nil copy equals: nil",
  1924. messageSends: ["assert:equals:", "copy"],
  1925. referencedClasses: []
  1926. }),
  1927. smalltalk.UndefinedTest);
  1928. smalltalk.addMethod(
  1929. "_testDeepCopy",
  1930. smalltalk.method({
  1931. selector: "testDeepCopy",
  1932. category: 'tests',
  1933. fn: function (){
  1934. var self=this;
  1935. smalltalk.send(self, "_assert_", [smalltalk.send(smalltalk.send(nil, "_deepCopy", []), "__eq", [nil])]);
  1936. return self;},
  1937. args: [],
  1938. source: "testDeepCopy\x0a\x09self assert: nil deepCopy = nil",
  1939. messageSends: ["assert:", "=", "deepCopy"],
  1940. referencedClasses: []
  1941. }),
  1942. smalltalk.UndefinedTest);
  1943. smalltalk.addMethod(
  1944. "_testIfNil",
  1945. smalltalk.method({
  1946. selector: "testIfNil",
  1947. category: 'tests',
  1948. fn: function (){
  1949. var self=this;
  1950. smalltalk.send(self, "_assert_equals_", [(($receiver = nil) == nil || $receiver == undefined) ? (function(){return true;})() : $receiver, true]);
  1951. smalltalk.send(self, "_deny_", [smalltalk.send((($receiver = nil) != nil && $receiver != undefined) ? (function(){return true;})() : nil, "__eq", [true])]);
  1952. smalltalk.send(self, "_assert_equals_", [(($receiver = nil) == nil || $receiver == undefined) ? (function(){return true;})() : (function(){return false;})(), true]);
  1953. smalltalk.send(self, "_deny_", [smalltalk.send((($receiver = nil) == nil || $receiver == undefined) ? (function(){return false;})() : (function(){return true;})(), "__eq", [true])]);
  1954. return self;},
  1955. args: [],
  1956. source: "testIfNil\x0a\x09self assert: (nil ifNil: [true]) equals: true.\x0a\x09self deny: (nil ifNotNil: [true]) = true.\x0a\x09self assert: (nil ifNil: [true] ifNotNil: [false]) equals: true.\x0a\x09self deny: (nil ifNotNil: [true] ifNil: [false]) = true",
  1957. messageSends: ["assert:equals:", "ifNil:", "deny:", "=", "ifNotNil:", "ifNil:ifNotNil:", "ifNotNil:ifNil:"],
  1958. referencedClasses: []
  1959. }),
  1960. smalltalk.UndefinedTest);
  1961. smalltalk.addMethod(
  1962. "_testIsNil",
  1963. smalltalk.method({
  1964. selector: "testIsNil",
  1965. category: 'tests',
  1966. fn: function (){
  1967. var self=this;
  1968. smalltalk.send(self, "_assert_", [smalltalk.send(nil, "_isNil", [])]);
  1969. smalltalk.send(self, "_deny_", [smalltalk.send(nil, "_notNil", [])]);
  1970. return self;},
  1971. args: [],
  1972. source: "testIsNil\x0a\x09self assert: nil isNil.\x0a\x09self deny: nil notNil.",
  1973. messageSends: ["assert:", "isNil", "deny:", "notNil"],
  1974. referencedClasses: []
  1975. }),
  1976. smalltalk.UndefinedTest);