123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633 |
- smalltalk.addPackage('Kernel-Tests');
- smalltalk.addClass('BlockClosureTest', smalltalk.TestCase, [], 'Kernel-Tests');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testCanClearInterval",
- fn: function (){
- var self=this;
- function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._shouldnt_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st((function(){
- return smalltalk.withContext(function($ctx3) {
- return _st(_st($Error())._new())._signal();
- }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}))._valueWithInterval_((0)))._clearInterval();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
- return self}, function($ctx1) {$ctx1.fill(self,"testCanClearInterval",{},smalltalk.BlockClosureTest)})},
- messageSends: ["shouldnt:raise:", "clearInterval", "valueWithInterval:", "signal", "new"]}),
- smalltalk.BlockClosureTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testCanClearTimeout",
- fn: function (){
- var self=this;
- function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._shouldnt_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st((function(){
- return smalltalk.withContext(function($ctx3) {
- return _st(_st($Error())._new())._signal();
- }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}))._valueWithTimeout_((0)))._clearTimeout();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
- return self}, function($ctx1) {$ctx1.fill(self,"testCanClearTimeout",{},smalltalk.BlockClosureTest)})},
- messageSends: ["shouldnt:raise:", "clearTimeout", "valueWithTimeout:", "signal", "new"]}),
- smalltalk.BlockClosureTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testCompiledSource",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_(_st(_st((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((1)).__plus((1));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._compiledSource())._includesSubString_("function"));
- return self}, function($ctx1) {$ctx1.fill(self,"testCompiledSource",{},smalltalk.BlockClosureTest)})},
- messageSends: ["assert:", "includesSubString:", "compiledSource", "+"]}),
- smalltalk.BlockClosureTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testCurrySelf",
- fn: function (){
- var self=this;
- var curriedMethod,array;
- function $Array(){return smalltalk.Array||(typeof Array=="undefined"?nil:Array)}
- function $ClassBuilder(){return smalltalk.ClassBuilder||(typeof ClassBuilder=="undefined"?nil:ClassBuilder)}
- return smalltalk.withContext(function($ctx1) {
- curriedMethod=_st(_st((function(selfarg,x){
- return smalltalk.withContext(function($ctx2) {
- return _st(selfarg)._at_(x);
- }, function($ctx2) {$ctx2.fillBlock({selfarg:selfarg,x:x},$ctx1)})}))._currySelf())._asCompiledMethod_("foo:");
- array=[(3), (1), (4)];
- _st(_st($ClassBuilder())._new())._installMethod_forClass_category_(curriedMethod,$Array(),"**test helper");
- _st((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(self)._assert_equals_(_st(array)._foo_((2)),(1));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._ensure_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st($Array())._removeCompiledMethod_(curriedMethod);
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
- return self}, function($ctx1) {$ctx1.fill(self,"testCurrySelf",{curriedMethod:curriedMethod,array:array},smalltalk.BlockClosureTest)})},
- messageSends: ["asCompiledMethod:", "currySelf", "at:", "installMethod:forClass:category:", "new", "ensure:", "removeCompiledMethod:", "assert:equals:", "foo:"]}),
- smalltalk.BlockClosureTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testEnsure",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st((function(){
- return smalltalk.withContext(function($ctx2) {
- return (3);
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._ensure_((function(){
- return smalltalk.withContext(function($ctx2) {
- return (4);
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),(3));
- return self}, function($ctx1) {$ctx1.fill(self,"testEnsure",{},smalltalk.BlockClosureTest)})},
- messageSends: ["assert:equals:", "ensure:"]}),
- smalltalk.BlockClosureTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testEnsureRaises",
- fn: function (){
- var self=this;
- function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((function(){
- return smalltalk.withContext(function($ctx3) {
- return _st(_st($Error())._new())._signal();
- }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}))._ensure_((function(){
- return smalltalk.withContext(function($ctx3) {
- return true;
- }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
- return self}, function($ctx1) {$ctx1.fill(self,"testEnsureRaises",{},smalltalk.BlockClosureTest)})},
- messageSends: ["should:raise:", "ensure:", "signal", "new"]}),
- smalltalk.BlockClosureTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testExceptionSemantics",
- fn: function (){
- var self=this;
- function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._timeout_((100));
- _st(_st(self)._async_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((function(){
- return smalltalk.withContext(function($ctx3) {
- _st(self)._assert_(true);
- _st($Error())._signal();
- _st(self)._deny_(true);
- return _st(self)._finished();
- }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}))._on_do_($Error(),(function(ex){
- return smalltalk.withContext(function($ctx3) {
- return _st(self)._finished();
- }, function($ctx3) {$ctx3.fillBlock({ex:ex},$ctx1)})}));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})))._valueWithTimeout_((0));
- return self}, function($ctx1) {$ctx1.fill(self,"testExceptionSemantics",{},smalltalk.BlockClosureTest)})},
- messageSends: ["timeout:", "valueWithTimeout:", "async:", "on:do:", "finished", "assert:", "signal", "deny:"]}),
- smalltalk.BlockClosureTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testNumArgs",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st((function(){
- return smalltalk.withContext(function($ctx2) {
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._numArgs(),(0));
- _st(self)._assert_equals_(_st((function(a,b){
- return smalltalk.withContext(function($ctx2) {
- }, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1)})}))._numArgs(),(2));
- return self}, function($ctx1) {$ctx1.fill(self,"testNumArgs",{},smalltalk.BlockClosureTest)})},
- messageSends: ["assert:equals:", "numArgs"]}),
- smalltalk.BlockClosureTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testOnDo",
- fn: function (){
- var self=this;
- function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_(_st((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st($Error())._new())._signal();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._on_do_($Error(),(function(ex){
- return smalltalk.withContext(function($ctx2) {
- return true;
- }, function($ctx2) {$ctx2.fillBlock({ex:ex},$ctx1)})})));
- return self}, function($ctx1) {$ctx1.fill(self,"testOnDo",{},smalltalk.BlockClosureTest)})},
- messageSends: ["assert:", "on:do:", "signal", "new"]}),
- smalltalk.BlockClosureTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testValue",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((1)).__plus((1));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._value(),(2));
- _st(self)._assert_equals_(_st((function(x){
- return smalltalk.withContext(function($ctx2) {
- return _st(x).__plus((1));
- }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1)})}))._value_((2)),(3));
- _st(self)._assert_equals_(_st((function(x,y){
- return smalltalk.withContext(function($ctx2) {
- return _st(x).__star(y);
- }, function($ctx2) {$ctx2.fillBlock({x:x,y:y},$ctx1)})}))._value_value_((2),(4)),(8));
- _st(self)._assert_equals_(_st((function(a,b,c){
- return smalltalk.withContext(function($ctx2) {
- return (1);
- }, function($ctx2) {$ctx2.fillBlock({a:a,b:b,c:c},$ctx1)})}))._value(),(1));
- return self}, function($ctx1) {$ctx1.fill(self,"testValue",{},smalltalk.BlockClosureTest)})},
- messageSends: ["assert:equals:", "value", "+", "value:", "value:value:", "*"]}),
- smalltalk.BlockClosureTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testValueWithPossibleArguments",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st((function(){
- return smalltalk.withContext(function($ctx2) {
- return (1);
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._valueWithPossibleArguments_([(3), (4)]),(1));
- _st(self)._assert_equals_(_st((function(a){
- return smalltalk.withContext(function($ctx2) {
- return _st(a).__plus((4));
- }, function($ctx2) {$ctx2.fillBlock({a:a},$ctx1)})}))._valueWithPossibleArguments_([(3), (4)]),(7));
- _st(self)._assert_equals_(_st((function(a,b){
- return smalltalk.withContext(function($ctx2) {
- return _st(a).__plus(b);
- }, function($ctx2) {$ctx2.fillBlock({a:a,b:b},$ctx1)})}))._valueWithPossibleArguments_([(3), (4), (5)]),(7));
- return self}, function($ctx1) {$ctx1.fill(self,"testValueWithPossibleArguments",{},smalltalk.BlockClosureTest)})},
- messageSends: ["assert:equals:", "valueWithPossibleArguments:", "+"]}),
- smalltalk.BlockClosureTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testWhileFalse",
- fn: function (){
- var self=this;
- var i;
- return smalltalk.withContext(function($ctx1) {
- i=(0);
- _st((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(i).__gt((5));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileFalse_((function(){
- return smalltalk.withContext(function($ctx2) {
- i=_st(i).__plus((1));
- return i;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
- _st(self)._assert_equals_(i,(6));
- i=(0);
- _st((function(){
- return smalltalk.withContext(function($ctx2) {
- i=_st(i).__plus((1));
- i;
- return _st(i).__gt((5));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileFalse();
- _st(self)._assert_equals_(i,(6));
- return self}, function($ctx1) {$ctx1.fill(self,"testWhileFalse",{i:i},smalltalk.BlockClosureTest)})},
- messageSends: ["whileFalse:", "+", ">", "assert:equals:", "whileFalse"]}),
- smalltalk.BlockClosureTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testWhileTrue",
- fn: function (){
- var self=this;
- var i;
- return smalltalk.withContext(function($ctx1) {
- i=(0);
- _st((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(i).__lt((5));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileTrue_((function(){
- return smalltalk.withContext(function($ctx2) {
- i=_st(i).__plus((1));
- return i;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
- _st(self)._assert_equals_(i,(5));
- i=(0);
- _st((function(){
- return smalltalk.withContext(function($ctx2) {
- i=_st(i).__plus((1));
- i;
- return _st(i).__lt((5));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._whileTrue();
- _st(self)._assert_equals_(i,(5));
- return self}, function($ctx1) {$ctx1.fill(self,"testWhileTrue",{i:i},smalltalk.BlockClosureTest)})},
- messageSends: ["whileTrue:", "+", "<", "assert:equals:", "whileTrue"]}),
- smalltalk.BlockClosureTest);
- smalltalk.addClass('BooleanTest', smalltalk.TestCase, [], 'Kernel-Tests');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testEquality",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._deny_(_st((0)).__eq(false));
- _st(self)._deny_(_st(false).__eq((0)));
- _st(self)._deny_(_st("").__eq(false));
- _st(self)._deny_(_st(false).__eq(""));
- _st(self)._assert_(_st(true).__eq(true));
- _st(self)._deny_(_st(false).__eq(true));
- _st(self)._deny_(_st(true).__eq(false));
- _st(self)._assert_(_st(false).__eq(false));
- _st(self)._assert_(_st(_st(true)._yourself()).__eq(true));
- _st(self)._assert_(_st(_st(true)._yourself()).__eq(_st(true)._yourself()));
- return self}, function($ctx1) {$ctx1.fill(self,"testEquality",{},smalltalk.BooleanTest)})},
- messageSends: ["deny:", "=", "assert:", "yourself"]}),
- smalltalk.BooleanTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testIdentity",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._deny_(_st((0)).__eq_eq(false));
- _st(self)._deny_(_st(false).__eq_eq((0)));
- _st(self)._deny_(_st("").__eq_eq(false));
- _st(self)._deny_(_st(false).__eq_eq(""));
- _st(self)._assert_(_st(true).__eq_eq(true));
- _st(self)._deny_(_st(false).__eq_eq(true));
- _st(self)._deny_(_st(true).__eq_eq(false));
- _st(self)._assert_(_st(false).__eq_eq(false));
- _st(self)._assert_(_st(_st(true)._yourself()).__eq_eq(true));
- _st(self)._assert_(_st(_st(true)._yourself()).__eq_eq(_st(true)._yourself()));
- return self}, function($ctx1) {$ctx1.fill(self,"testIdentity",{},smalltalk.BooleanTest)})},
- messageSends: ["deny:", "==", "assert:", "yourself"]}),
- smalltalk.BooleanTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testIfTrueIfFalse",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2,$3,$4,$5,$6,$7,$8,$9,$10,$11,$12,$13,$14,$15,$16;
- $1=self;
- if(smalltalk.assert(true)){
- $2="alternative block";
- };
- _st($1)._assert_equals_($2,"alternative block");
- $3=self;
- if(! smalltalk.assert(true)){
- $4="alternative block";
- };
- _st($3)._assert_equals_($4,nil);
- $5=self;
- if(smalltalk.assert(false)){
- $6="alternative block";
- };
- _st($5)._assert_equals_($6,nil);
- $7=self;
- if(! smalltalk.assert(false)){
- $8="alternative block";
- };
- _st($7)._assert_equals_($8,"alternative block");
- $9=self;
- if(smalltalk.assert(false)){
- $10="alternative block";
- } else {
- $10="alternative block2";
- };
- _st($9)._assert_equals_($10,"alternative block2");
- $11=self;
- if(smalltalk.assert(false)){
- $12="alternative block2";
- } else {
- $12="alternative block";
- };
- _st($11)._assert_equals_($12,"alternative block");
- $13=self;
- if(smalltalk.assert(true)){
- $14="alternative block";
- } else {
- $14="alternative block2";
- };
- _st($13)._assert_equals_($14,"alternative block");
- $15=self;
- if(smalltalk.assert(true)){
- $16="alternative block2";
- } else {
- $16="alternative block";
- };
- _st($15)._assert_equals_($16,"alternative block2");
- return self}, function($ctx1) {$ctx1.fill(self,"testIfTrueIfFalse",{},smalltalk.BooleanTest)})},
- messageSends: ["assert:equals:", "ifTrue:", "ifFalse:", "ifTrue:ifFalse:", "ifFalse:ifTrue:"]}),
- smalltalk.BooleanTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testIfTrueIfFalseWithBoxing",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$3,$2,$4,$6,$5,$7,$9,$8,$10,$12,$11,$13,$15,$14,$16,$18,$17,$19,$21,$20,$22,$24,$23;
- $1=self;
- $3=_st(true)._yourself();
- if(smalltalk.assert($3)){
- $2="alternative block";
- };
- _st($1)._assert_equals_($2,"alternative block");
- $4=self;
- $6=_st(true)._yourself();
- if(! smalltalk.assert($6)){
- $5="alternative block";
- };
- _st($4)._assert_equals_($5,nil);
- $7=self;
- $9=_st(false)._yourself();
- if(smalltalk.assert($9)){
- $8="alternative block";
- };
- _st($7)._assert_equals_($8,nil);
- $10=self;
- $12=_st(false)._yourself();
- if(! smalltalk.assert($12)){
- $11="alternative block";
- };
- _st($10)._assert_equals_($11,"alternative block");
- $13=self;
- $15=_st(false)._yourself();
- if(smalltalk.assert($15)){
- $14="alternative block";
- } else {
- $14="alternative block2";
- };
- _st($13)._assert_equals_($14,"alternative block2");
- $16=self;
- $18=_st(false)._yourself();
- if(smalltalk.assert($18)){
- $17="alternative block2";
- } else {
- $17="alternative block";
- };
- _st($16)._assert_equals_($17,"alternative block");
- $19=self;
- $21=_st(true)._yourself();
- if(smalltalk.assert($21)){
- $20="alternative block";
- } else {
- $20="alternative block2";
- };
- _st($19)._assert_equals_($20,"alternative block");
- $22=self;
- $24=_st(true)._yourself();
- if(smalltalk.assert($24)){
- $23="alternative block2";
- } else {
- $23="alternative block";
- };
- _st($22)._assert_equals_($23,"alternative block2");
- return self}, function($ctx1) {$ctx1.fill(self,"testIfTrueIfFalseWithBoxing",{},smalltalk.BooleanTest)})},
- messageSends: ["assert:equals:", "ifTrue:", "yourself", "ifFalse:", "ifTrue:ifFalse:", "ifFalse:ifTrue:"]}),
- smalltalk.BooleanTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testLogic",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2,$3,$4,$5,$6,$7,$8;
- $1=self;
- _st($1)._assert_(_st(true).__and(true));
- _st($1)._deny_(_st(true).__and(false));
- _st($1)._deny_(_st(false).__and(true));
- $2=_st($1)._deny_(_st(false).__and(false));
- $3=self;
- _st($3)._assert_(_st(true).__or(true));
- _st($3)._assert_(_st(true).__or(false));
- _st($3)._assert_(_st(false).__or(true));
- $4=_st($3)._deny_(_st(false).__or(false));
- $5=self;
- _st($5)._assert_(_st(true).__and(_st((1)).__gt((0))));
- _st($5)._deny_(_st(_st((1)).__gt((0))).__and(false));
- $6=_st($5)._deny_(_st(_st((1)).__gt((0))).__and(_st((1)).__gt((2))));
- $7=self;
- _st($7)._assert_(_st(false).__or(_st((1)).__gt((0))));
- _st($7)._assert_(_st(_st((1)).__gt((0))).__or(false));
- $8=_st($7)._assert_(_st(_st((1)).__gt((0))).__or(_st((1)).__gt((2))));
- return self}, function($ctx1) {$ctx1.fill(self,"testLogic",{},smalltalk.BooleanTest)})},
- messageSends: ["assert:", "&", "deny:", "|", ">"]}),
- smalltalk.BooleanTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testLogicKeywords",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2,$3,$4,$5,$6,$7,$8;
- $1=self;
- _st($1)._assert_(_st(true)._and_((function(){
- return smalltalk.withContext(function($ctx2) {
- return true;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
- _st($1)._deny_(_st(true)._and_((function(){
- return smalltalk.withContext(function($ctx2) {
- return false;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
- _st($1)._deny_(_st(false)._and_((function(){
- return smalltalk.withContext(function($ctx2) {
- return true;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
- $2=_st($1)._deny_(_st(false)._and_((function(){
- return smalltalk.withContext(function($ctx2) {
- return false;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
- $3=self;
- _st($3)._assert_(_st(true)._or_((function(){
- return smalltalk.withContext(function($ctx2) {
- return true;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
- _st($3)._assert_(_st(true)._or_((function(){
- return smalltalk.withContext(function($ctx2) {
- return false;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
- _st($3)._assert_(_st(false)._or_((function(){
- return smalltalk.withContext(function($ctx2) {
- return true;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
- $4=_st($3)._deny_(_st(false)._or_((function(){
- return smalltalk.withContext(function($ctx2) {
- return false;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
- $5=self;
- _st($5)._assert_(_st(true)._and_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((1)).__gt((0));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
- _st($5)._deny_(_st(_st((1)).__gt((0)))._and_((function(){
- return smalltalk.withContext(function($ctx2) {
- return false;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
- $6=_st($5)._deny_(_st(_st((1)).__gt((0)))._and_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((1)).__gt((2));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
- $7=self;
- _st($7)._assert_(_st(false)._or_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((1)).__gt((0));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
- _st($7)._assert_(_st(_st((1)).__gt((0)))._or_((function(){
- return smalltalk.withContext(function($ctx2) {
- return false;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
- $8=_st($7)._assert_(_st(_st((1)).__gt((0)))._or_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((1)).__gt((2));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})));
- return self}, function($ctx1) {$ctx1.fill(self,"testLogicKeywords",{},smalltalk.BooleanTest)})},
- messageSends: ["assert:", "and:", "deny:", "or:", ">"]}),
- smalltalk.BooleanTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testNonBooleanError",
- fn: function (){
- var self=this;
- function $NonBooleanReceiver(){return smalltalk.NonBooleanReceiver||(typeof NonBooleanReceiver=="undefined"?nil:NonBooleanReceiver)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- if(smalltalk.assert("")){
- } else {
- };
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$NonBooleanReceiver());
- return self}, function($ctx1) {$ctx1.fill(self,"testNonBooleanError",{},smalltalk.BooleanTest)})},
- messageSends: ["should:raise:", "ifTrue:ifFalse:"]}),
- smalltalk.BooleanTest);
- smalltalk.addClass('ClassBuilderTest', smalltalk.TestCase, ['builder', 'theClass'], 'Kernel-Tests');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "setUp",
- fn: function (){
- var self=this;
- function $ClassBuilder(){return smalltalk.ClassBuilder||(typeof ClassBuilder=="undefined"?nil:ClassBuilder)}
- return smalltalk.withContext(function($ctx1) {
- self["@builder"]=_st($ClassBuilder())._new();
- return self}, function($ctx1) {$ctx1.fill(self,"setUp",{},smalltalk.ClassBuilderTest)})},
- messageSends: ["new"]}),
- smalltalk.ClassBuilderTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "tearDown",
- fn: function (){
- var self=this;
- function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=self["@theClass"];
- if(($receiver = $1) == nil || $receiver == undefined){
- $1;
- } else {
- _st(_st($Smalltalk())._current())._removeClass_(self["@theClass"]);
- self["@theClass"]=nil;
- self["@theClass"];
- };
- return self}, function($ctx1) {$ctx1.fill(self,"tearDown",{},smalltalk.ClassBuilderTest)})},
- messageSends: ["ifNotNil:", "removeClass:", "current"]}),
- smalltalk.ClassBuilderTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testClassCopy",
- fn: function (){
- var self=this;
- function $ObjectMock(){return smalltalk.ObjectMock||(typeof ObjectMock=="undefined"?nil:ObjectMock)}
- return smalltalk.withContext(function($ctx1) {
- self["@theClass"]=_st(self["@builder"])._copyClass_named_($ObjectMock(),"ObjectMock2");
- _st(self)._assert_(_st(_st(self["@theClass"])._superclass()).__eq_eq(_st($ObjectMock())._superclass()));
- _st(self)._assert_(_st(_st(self["@theClass"])._instanceVariableNames()).__eq_eq(_st($ObjectMock())._instanceVariableNames()));
- _st(self)._assert_equals_(_st(self["@theClass"])._name(),"ObjectMock2");
- _st(self)._assert_(_st(_st(self["@theClass"])._package()).__eq_eq(_st($ObjectMock())._package()));
- _st(self)._assert_equals_(_st(_st(self["@theClass"])._methodDictionary())._keys(),_st(_st($ObjectMock())._methodDictionary())._keys());
- return self}, function($ctx1) {$ctx1.fill(self,"testClassCopy",{},smalltalk.ClassBuilderTest)})},
- messageSends: ["copyClass:named:", "assert:", "==", "superclass", "instanceVariableNames", "assert:equals:", "name", "package", "keys", "methodDictionary"]}),
- smalltalk.ClassBuilderTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testClassMigration",
- fn: function (){
- var self=this;
- var instance,oldClass;
- function $ObjectMock(){return smalltalk.ObjectMock||(typeof ObjectMock=="undefined"?nil:ObjectMock)}
- function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
- function $ObjectMock2(){return smalltalk.ObjectMock2||(typeof ObjectMock2=="undefined"?nil:ObjectMock2)}
- return smalltalk.withContext(function($ctx1) {
- oldClass=_st(self["@builder"])._copyClass_named_($ObjectMock(),"ObjectMock2");
- instance=_st(_st(_st($Smalltalk())._current())._at_("ObjectMock2"))._new();
- _st($ObjectMock())._subclass_instanceVariableNames_package_(_st(_st($Smalltalk())._current())._at_("ObjectMock2"),"","Kernel-Tests");
- _st(self)._deny_(_st(oldClass).__eq_eq($ObjectMock2()));
- _st(self)._assert_(_st(_st($ObjectMock2())._superclass()).__eq_eq($ObjectMock()));
- _st(self)._assert_(_st(_st($ObjectMock2())._instanceVariableNames())._isEmpty());
- _st(self)._assert_equals_(_st($ObjectMock2())._selectors(),_st(oldClass)._selectors());
- _st(self)._assert_equals_(_st($ObjectMock2())._comment(),_st(oldClass)._comment());
- _st(self)._assert_equals_(_st(_st($ObjectMock2())._package())._name(),"Kernel-Tests");
- _st(self)._deny_(_st(_st(instance)._class()).__eq_eq($ObjectMock2()));
- _st(self)._assert_(_st(_st(_st($Smalltalk())._current())._at_(_st(_st(instance)._class())._name()))._isNil());
- _st(_st($Smalltalk())._current())._removeClass_($ObjectMock2());
- return self}, function($ctx1) {$ctx1.fill(self,"testClassMigration",{instance:instance,oldClass:oldClass},smalltalk.ClassBuilderTest)})},
- messageSends: ["copyClass:named:", "new", "at:", "current", "subclass:instanceVariableNames:package:", "deny:", "==", "assert:", "superclass", "isEmpty", "instanceVariableNames", "assert:equals:", "selectors", "comment", "name", "package", "class", "isNil", "removeClass:"]}),
- smalltalk.ClassBuilderTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testClassMigrationWithClassInstanceVariables",
- fn: function (){
- var self=this;
- function $ObjectMock(){return smalltalk.ObjectMock||(typeof ObjectMock=="undefined"?nil:ObjectMock)}
- function $ObjectMock2(){return smalltalk.ObjectMock2||(typeof ObjectMock2=="undefined"?nil:ObjectMock2)}
- function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
- return smalltalk.withContext(function($ctx1) {
- _st(self["@builder"])._copyClass_named_($ObjectMock(),"ObjectMock2");
- _st(_st($ObjectMock2())._class())._instanceVariableNames_("foo bar");
- _st($ObjectMock())._subclass_instanceVariableNames_package_(_st(_st($Smalltalk())._current())._at_("ObjectMock2"),"","Kernel-Tests");
- _st(self)._assert_equals_(_st(_st($ObjectMock2())._class())._instanceVariableNames(),["foo", "bar"]);
- _st(_st($Smalltalk())._current())._removeClass_($ObjectMock2());
- return self}, function($ctx1) {$ctx1.fill(self,"testClassMigrationWithClassInstanceVariables",{},smalltalk.ClassBuilderTest)})},
- messageSends: ["copyClass:named:", "instanceVariableNames:", "class", "subclass:instanceVariableNames:package:", "at:", "current", "assert:equals:", "instanceVariableNames", "removeClass:"]}),
- smalltalk.ClassBuilderTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testClassMigrationWithSubclasses",
- fn: function (){
- var self=this;
- function $ObjectMock(){return smalltalk.ObjectMock||(typeof ObjectMock=="undefined"?nil:ObjectMock)}
- function $ObjectMock2(){return smalltalk.ObjectMock2||(typeof ObjectMock2=="undefined"?nil:ObjectMock2)}
- function $ObjectMock3(){return smalltalk.ObjectMock3||(typeof ObjectMock3=="undefined"?nil:ObjectMock3)}
- function $Smalltalk(){return smalltalk.Smalltalk||(typeof Smalltalk=="undefined"?nil:Smalltalk)}
- function $ObjectMock4(){return smalltalk.ObjectMock4||(typeof ObjectMock4=="undefined"?nil:ObjectMock4)}
- return smalltalk.withContext(function($ctx1) {
- _st(self["@builder"])._copyClass_named_($ObjectMock(),"ObjectMock2");
- _st($ObjectMock2())._subclass_instanceVariableNames_package_("ObjectMock3","","Kernel-Tests");
- _st($ObjectMock3())._subclass_instanceVariableNames_package_("ObjectMock4","","Kernel-Tests");
- _st($ObjectMock())._subclass_instanceVariableNames_package_(_st(_st($Smalltalk())._current())._at_("ObjectMock2"),"","Kernel-Tests");
- _st(self)._assert_(_st(_st($ObjectMock())._subclasses())._includes_($ObjectMock2()));
- _st(self)._assert_(_st(_st($ObjectMock2())._subclasses())._includes_($ObjectMock3()));
- _st(self)._assert_(_st(_st($ObjectMock3())._subclasses())._includes_($ObjectMock4()));
- _st(_st($ObjectMock())._allSubclasses())._do_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st($Smalltalk())._current())._removeClass_(each);
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
- return self}, function($ctx1) {$ctx1.fill(self,"testClassMigrationWithSubclasses",{},smalltalk.ClassBuilderTest)})},
- messageSends: ["copyClass:named:", "subclass:instanceVariableNames:package:", "at:", "current", "assert:", "includes:", "subclasses", "do:", "removeClass:", "allSubclasses"]}),
- smalltalk.ClassBuilderTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testInstanceVariableNames",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(self["@builder"])._instanceVariableNamesFor_(" hello world "),["hello", "world"]);
- return self}, function($ctx1) {$ctx1.fill(self,"testInstanceVariableNames",{},smalltalk.ClassBuilderTest)})},
- messageSends: ["assert:equals:", "instanceVariableNamesFor:"]}),
- smalltalk.ClassBuilderTest);
- smalltalk.addClass('CollectionTest', smalltalk.TestCase, [], 'Kernel-Tests');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "assertSameContents:as:",
- fn: function (aCollection,anotherCollection){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_(_st(_st(aCollection)._size()).__eq(_st(anotherCollection)._size()));
- _st(aCollection)._do_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(self)._assert_(_st(_st(aCollection)._occurrencesOf_(each)).__eq(_st(anotherCollection)._occurrencesOf_(each)));
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
- return self}, function($ctx1) {$ctx1.fill(self,"assertSameContents:as:",{aCollection:aCollection,anotherCollection:anotherCollection},smalltalk.CollectionTest)})},
- messageSends: ["assert:", "=", "size", "do:", "occurrencesOf:"]}),
- smalltalk.CollectionTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "collection",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(_st(self)._collectionClass())._withAll_(_st(self)._defaultValues());
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"collection",{},smalltalk.CollectionTest)})},
- messageSends: ["withAll:", "defaultValues", "collectionClass"]}),
- smalltalk.CollectionTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "collectionClass",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(_st(self)._class())._collectionClass();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.CollectionTest)})},
- messageSends: ["collectionClass", "class"]}),
- smalltalk.CollectionTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "collectionWithDuplicates",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(_st(self)._collectionClass())._withAll_(["a", "b", "c", (1), (2), (1), "a"]);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"collectionWithDuplicates",{},smalltalk.CollectionTest)})},
- messageSends: ["withAll:", "collectionClass"]}),
- smalltalk.CollectionTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "defaultValues",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=[(1), (2), (3), (-4)];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"defaultValues",{},smalltalk.CollectionTest)})},
- messageSends: []}),
- smalltalk.CollectionTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "isCollectionReadOnly",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return false;
- }, function($ctx1) {$ctx1.fill(self,"isCollectionReadOnly",{},smalltalk.CollectionTest)})},
- messageSends: []}),
- smalltalk.CollectionTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testAsArray",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assertSameContents_as_(_st(self)._collection(),_st(_st(self)._collection())._asArray());
- return self}, function($ctx1) {$ctx1.fill(self,"testAsArray",{},smalltalk.CollectionTest)})},
- messageSends: ["assertSameContents:as:", "collection", "asArray"]}),
- smalltalk.CollectionTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testAsOrderedCollection",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assertSameContents_as_(_st(self)._collection(),_st(_st(self)._collection())._asOrderedCollection());
- return self}, function($ctx1) {$ctx1.fill(self,"testAsOrderedCollection",{},smalltalk.CollectionTest)})},
- messageSends: ["assertSameContents:as:", "collection", "asOrderedCollection"]}),
- smalltalk.CollectionTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testAsSet",
- fn: function (){
- var self=this;
- var c,set;
- return smalltalk.withContext(function($ctx1) {
- c=_st(self)._collectionWithDuplicates();
- set=_st(c)._asSet();
- _st(self)._assert_equals_(_st(set)._size(),(5));
- _st(c)._do_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(self)._assert_(_st(set)._includes_(each));
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
- return self}, function($ctx1) {$ctx1.fill(self,"testAsSet",{c:c,set:set},smalltalk.CollectionTest)})},
- messageSends: ["collectionWithDuplicates", "asSet", "assert:equals:", "size", "do:", "assert:", "includes:"]}),
- smalltalk.CollectionTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testCollect",
- fn: function (){
- var self=this;
- var newCollection;
- return smalltalk.withContext(function($ctx1) {
- newCollection=[(1), (2), (3), (4)];
- _st(self)._assertSameContents_as_(_st(_st(self)._collection())._collect_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(each)._abs();
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})),newCollection);
- return self}, function($ctx1) {$ctx1.fill(self,"testCollect",{newCollection:newCollection},smalltalk.CollectionTest)})},
- messageSends: ["assertSameContents:as:", "collect:", "abs", "collection"]}),
- smalltalk.CollectionTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testDetect",
- fn: function (){
- var self=this;
- function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(_st(self)._collection())._detect_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(each).__lt((0));
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})),(-4));
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st(self)._collection())._detect_((function(each){
- return smalltalk.withContext(function($ctx3) {
- return _st(each).__eq((6));
- }, function($ctx3) {$ctx3.fillBlock({each:each},$ctx1)})}));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
- return self}, function($ctx1) {$ctx1.fill(self,"testDetect",{},smalltalk.CollectionTest)})},
- messageSends: ["assert:equals:", "detect:", "<", "collection", "should:raise:", "="]}),
- smalltalk.CollectionTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testDo",
- fn: function (){
- var self=this;
- var newCollection;
- function $OrderedCollection(){return smalltalk.OrderedCollection||(typeof OrderedCollection=="undefined"?nil:OrderedCollection)}
- return smalltalk.withContext(function($ctx1) {
- newCollection=_st($OrderedCollection())._new();
- _st(_st(self)._collection())._do_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(newCollection)._add_(each);
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
- _st(self)._assertSameContents_as_(_st(self)._collection(),newCollection);
- return self}, function($ctx1) {$ctx1.fill(self,"testDo",{newCollection:newCollection},smalltalk.CollectionTest)})},
- messageSends: ["new", "do:", "add:", "collection", "assertSameContents:as:"]}),
- smalltalk.CollectionTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testIsEmpty",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_(_st(_st(_st(self)._collectionClass())._new())._isEmpty());
- _st(self)._deny_(_st(_st(self)._collection())._isEmpty());
- return self}, function($ctx1) {$ctx1.fill(self,"testIsEmpty",{},smalltalk.CollectionTest)})},
- messageSends: ["assert:", "isEmpty", "new", "collectionClass", "deny:", "collection"]}),
- smalltalk.CollectionTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testSelect",
- fn: function (){
- var self=this;
- var newCollection;
- return smalltalk.withContext(function($ctx1) {
- newCollection=[(2), (-4)];
- _st(self)._assertSameContents_as_(_st(_st(self)._collection())._select_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(each)._even();
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})),newCollection);
- return self}, function($ctx1) {$ctx1.fill(self,"testSelect",{newCollection:newCollection},smalltalk.CollectionTest)})},
- messageSends: ["assertSameContents:as:", "select:", "even", "collection"]}),
- smalltalk.CollectionTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testSize",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(_st(_st(self)._collectionClass())._new())._size(),(0));
- _st(self)._assert_equals_(_st(_st(self)._collection())._size(),(4));
- return self}, function($ctx1) {$ctx1.fill(self,"testSize",{},smalltalk.CollectionTest)})},
- messageSends: ["assert:equals:", "size", "new", "collectionClass", "collection"]}),
- smalltalk.CollectionTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "collectionClass",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return nil;
- }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.CollectionTest.klass)})},
- messageSends: []}),
- smalltalk.CollectionTest.klass);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "isAbstract",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(_st(self)._collectionClass())._isNil();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"isAbstract",{},smalltalk.CollectionTest.klass)})},
- messageSends: ["isNil", "collectionClass"]}),
- smalltalk.CollectionTest.klass);
- smalltalk.addClass('IndexableCollectionTest', smalltalk.CollectionTest, [], 'Kernel-Tests');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testAt",
- fn: function (){
- var self=this;
- function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(_st(self)._collection())._at_((4)),(-4));
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st(self)._collection())._at_((5));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
- return self}, function($ctx1) {$ctx1.fill(self,"testAt",{},smalltalk.IndexableCollectionTest)})},
- messageSends: ["assert:equals:", "at:", "collection", "should:raise:"]}),
- smalltalk.IndexableCollectionTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testAtIfAbsent",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(_st(self)._collection())._at_ifAbsent_(_st(_st(_st(self)._collection())._size()).__plus((1)),(function(){
- return smalltalk.withContext(function($ctx2) {
- return "none";
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"none");
- return self}, function($ctx1) {$ctx1.fill(self,"testAtIfAbsent",{},smalltalk.IndexableCollectionTest)})},
- messageSends: ["assert:equals:", "at:ifAbsent:", "+", "size", "collection"]}),
- smalltalk.IndexableCollectionTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testContains",
- fn: function (){
- var self=this;
- var collection;
- function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)}
- return smalltalk.withContext(function($ctx1) {
- collection=_st(self)._collection();
- _st(self)._assert_(_st(_st(self)._collection())._contains_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(each).__eq(_st(_st(self)._collection())._first());
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})));
- _st(self)._deny_(_st(_st(self)._collection())._contains_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(each).__eq(_st($Object())._new());
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})));
- return self}, function($ctx1) {$ctx1.fill(self,"testContains",{collection:collection},smalltalk.IndexableCollectionTest)})},
- messageSends: ["collection", "assert:", "contains:", "=", "first", "deny:", "new"]}),
- smalltalk.IndexableCollectionTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testIndexOf",
- fn: function (){
- var self=this;
- function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(_st(self)._collection())._indexOf_((2)),(2));
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st(self)._collection())._indexOf_((999));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
- _st(self)._assert_equals_(_st(_st(self)._collection())._indexOf_ifAbsent_((999),(function(){
- return smalltalk.withContext(function($ctx2) {
- return "sentinel";
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"sentinel");
- return self}, function($ctx1) {$ctx1.fill(self,"testIndexOf",{},smalltalk.IndexableCollectionTest)})},
- messageSends: ["assert:equals:", "indexOf:", "collection", "should:raise:", "indexOf:ifAbsent:"]}),
- smalltalk.IndexableCollectionTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testWithIndexDo",
- fn: function (){
- var self=this;
- var collection;
- return smalltalk.withContext(function($ctx1) {
- collection=_st(self)._collection();
- _st(_st(self)._collection())._withIndexDo_((function(each,index){
- return smalltalk.withContext(function($ctx2) {
- return _st(self)._assert_equals_(_st(collection)._at_(index),each);
- }, function($ctx2) {$ctx2.fillBlock({each:each,index:index},$ctx1)})}));
- return self}, function($ctx1) {$ctx1.fill(self,"testWithIndexDo",{collection:collection},smalltalk.IndexableCollectionTest)})},
- messageSends: ["collection", "withIndexDo:", "assert:equals:", "at:"]}),
- smalltalk.IndexableCollectionTest);
- smalltalk.addClass('HashedCollectionTest', smalltalk.IndexableCollectionTest, [], 'Kernel-Tests');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "collection",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=smalltalk.HashedCollection._fromPairs_([_st("b").__minus_gt((1)),_st("a").__minus_gt((2)),_st("c").__minus_gt((3)),_st("d").__minus_gt((-4))]);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"collection",{},smalltalk.HashedCollectionTest)})},
- messageSends: ["->"]}),
- smalltalk.HashedCollectionTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "collectionWithDuplicates",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=smalltalk.HashedCollection._fromPairs_([_st("b").__minus_gt((1)),_st("a").__minus_gt((2)),_st("c").__minus_gt((3)),_st("d").__minus_gt((-4)),_st("e").__minus_gt((1)),_st("f").__minus_gt((2)),_st("g").__minus_gt((10))]);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"collectionWithDuplicates",{},smalltalk.HashedCollectionTest)})},
- messageSends: ["->"]}),
- smalltalk.HashedCollectionTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testAt",
- fn: function (){
- var self=this;
- function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(_st(self)._collection())._at_("a"),(2));
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st(self)._collection())._at_((5));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
- return self}, function($ctx1) {$ctx1.fill(self,"testAt",{},smalltalk.HashedCollectionTest)})},
- messageSends: ["assert:equals:", "at:", "collection", "should:raise:"]}),
- smalltalk.HashedCollectionTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testContains",
- fn: function (){
- var self=this;
- var collection;
- function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)}
- return smalltalk.withContext(function($ctx1) {
- collection=_st(self)._collection();
- _st(self)._assert_(_st(_st(self)._collection())._contains_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(each).__eq(_st(_st(_st(self)._collection())._values())._first());
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})));
- _st(self)._deny_(_st(_st(self)._collection())._contains_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(each).__eq(_st($Object())._new());
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})));
- return self}, function($ctx1) {$ctx1.fill(self,"testContains",{collection:collection},smalltalk.HashedCollectionTest)})},
- messageSends: ["collection", "assert:", "contains:", "=", "first", "values", "deny:", "new"]}),
- smalltalk.HashedCollectionTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testIndexOf",
- fn: function (){
- var self=this;
- function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(_st(self)._collection())._indexOf_((2)),"a");
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st(self)._collection())._indexOf_((999));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
- _st(self)._assert_equals_(_st(_st(self)._collection())._indexOf_ifAbsent_((999),(function(){
- return smalltalk.withContext(function($ctx2) {
- return "sentinel";
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"sentinel");
- return self}, function($ctx1) {$ctx1.fill(self,"testIndexOf",{},smalltalk.HashedCollectionTest)})},
- messageSends: ["assert:equals:", "indexOf:", "collection", "should:raise:", "indexOf:ifAbsent:"]}),
- smalltalk.HashedCollectionTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "collectionClass",
- fn: function (){
- var self=this;
- function $HashedCollection(){return smalltalk.HashedCollection||(typeof HashedCollection=="undefined"?nil:HashedCollection)}
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=$HashedCollection();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.HashedCollectionTest.klass)})},
- messageSends: []}),
- smalltalk.HashedCollectionTest.klass);
- smalltalk.addClass('DictionaryTest', smalltalk.HashedCollectionTest, [], 'Kernel-Tests');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "collection",
- fn: function (){
- var self=this;
- function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
- return smalltalk.withContext(function($ctx1) {
- var $2,$3,$1;
- $2=_st($Dictionary())._new();
- _st($2)._at_put_((1),(1));
- _st($2)._at_put_("a",(2));
- _st($2)._at_put_(true,(3));
- _st($2)._at_put_((4),(-4));
- $3=_st($2)._yourself();
- $1=$3;
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"collection",{},smalltalk.DictionaryTest)})},
- messageSends: ["at:put:", "new", "yourself"]}),
- smalltalk.DictionaryTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "collectionWithDuplicates",
- fn: function (){
- var self=this;
- function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
- return smalltalk.withContext(function($ctx1) {
- var $2,$3,$1;
- $2=_st($Dictionary())._new();
- _st($2)._at_put_((1),(1));
- _st($2)._at_put_("a",(2));
- _st($2)._at_put_(true,(3));
- _st($2)._at_put_((4),(-4));
- _st($2)._at_put_("b",(1));
- _st($2)._at_put_((3),(3));
- _st($2)._at_put_(false,(12));
- $3=_st($2)._yourself();
- $1=$3;
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"collectionWithDuplicates",{},smalltalk.DictionaryTest)})},
- messageSends: ["at:put:", "new", "yourself"]}),
- smalltalk.DictionaryTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testAccessing",
- fn: function (){
- var self=this;
- var d;
- function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
- return smalltalk.withContext(function($ctx1) {
- d=_st($Dictionary())._new();
- _st(d)._at_put_("hello","world");
- _st(self)._assert_equals_(_st(d)._at_("hello"),"world");
- _st(self)._assert_equals_(_st(d)._at_ifAbsent_("hello",(function(){
- return smalltalk.withContext(function($ctx2) {
- return nil;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"world");
- _st(self)._deny_(_st(_st(d)._at_ifAbsent_("foo",(function(){
- return smalltalk.withContext(function($ctx2) {
- return nil;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))).__eq("world"));
- _st(self)._assert_(_st(d)._includesKey_("hello"));
- _st(self)._deny_(_st(d)._includesKey_("foo"));
- _st(d)._at_put_((1),(2));
- _st(self)._assert_equals_(_st(d)._at_((1)),(2));
- _st(d)._at_put_(_st((1)).__at((3)),(3));
- _st(self)._assert_equals_(_st(d)._at_(_st((1)).__at((3))),(3));
- _st(self)._assert_(_st(d)._includesKey_(_st((1)).__at((3))));
- _st(self)._deny_(_st(d)._includesKey_(_st((3)).__at((1))));
- return self}, function($ctx1) {$ctx1.fill(self,"testAccessing",{d:d},smalltalk.DictionaryTest)})},
- messageSends: ["new", "at:put:", "assert:equals:", "at:", "at:ifAbsent:", "deny:", "=", "assert:", "includesKey:", "@"]}),
- smalltalk.DictionaryTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testDynamicDictionaries",
- fn: function (){
- var self=this;
- function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(smalltalk.HashedCollection._fromPairs_([_st("hello").__minus_gt((1))]))._asDictionary(),_st($Dictionary())._with_(_st("hello").__minus_gt((1))));
- return self}, function($ctx1) {$ctx1.fill(self,"testDynamicDictionaries",{},smalltalk.DictionaryTest)})},
- messageSends: ["assert:equals:", "asDictionary", "->", "with:"]}),
- smalltalk.DictionaryTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testEquality",
- fn: function (){
- var self=this;
- var d1,d2;
- function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
- return smalltalk.withContext(function($ctx1) {
- var $1,$2,$3,$4,$5,$6,$7,$8,$9,$10;
- _st(self)._assert_(_st(_st($Dictionary())._new()).__eq(_st($Dictionary())._new()));
- $1=_st($Dictionary())._new();
- _st($1)._at_put_((1),(2));
- $2=_st($1)._yourself();
- d1=$2;
- $3=_st($Dictionary())._new();
- _st($3)._at_put_((1),(2));
- $4=_st($3)._yourself();
- d2=$4;
- _st(self)._assert_(_st(d1).__eq(d2));
- $5=_st($Dictionary())._new();
- _st($5)._at_put_((1),(3));
- $6=_st($5)._yourself();
- d2=$6;
- _st(self)._deny_(_st(d1).__eq(d2));
- $7=_st($Dictionary())._new();
- _st($7)._at_put_((2),(2));
- $8=_st($7)._yourself();
- d2=$8;
- _st(self)._deny_(_st(d1).__eq(d2));
- $9=_st($Dictionary())._new();
- _st($9)._at_put_((1),(2));
- _st($9)._at_put_((3),(4));
- $10=_st($9)._yourself();
- d2=$10;
- _st(self)._deny_(_st(d1).__eq(d2));
- return self}, function($ctx1) {$ctx1.fill(self,"testEquality",{d1:d1,d2:d2},smalltalk.DictionaryTest)})},
- messageSends: ["assert:", "=", "new", "at:put:", "yourself", "deny:"]}),
- smalltalk.DictionaryTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testIfAbsent",
- fn: function (){
- var self=this;
- var d,visited;
- function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
- return smalltalk.withContext(function($ctx1) {
- visited=false;
- d=_st($Dictionary())._new();
- _st(d)._at_ifAbsent_("hello",(function(){
- return smalltalk.withContext(function($ctx2) {
- visited=true;
- return visited;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
- _st(self)._assert_(visited);
- return self}, function($ctx1) {$ctx1.fill(self,"testIfAbsent",{d:d,visited:visited},smalltalk.DictionaryTest)})},
- messageSends: ["new", "at:ifAbsent:", "assert:"]}),
- smalltalk.DictionaryTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testIfPresent",
- fn: function (){
- var self=this;
- var d,visited,absent;
- function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
- return smalltalk.withContext(function($ctx1) {
- visited=false;
- d=_st($Dictionary())._new();
- _st(d)._at_put_("hello","world");
- _st(d)._at_ifPresent_("hello",(function(value){
- return smalltalk.withContext(function($ctx2) {
- visited=value;
- return visited;
- }, function($ctx2) {$ctx2.fillBlock({value:value},$ctx1)})}));
- _st(self)._assert_equals_(visited,"world");
- absent=_st(d)._at_ifPresent_("bye",(function(value){
- return smalltalk.withContext(function($ctx2) {
- visited=value;
- return visited;
- }, function($ctx2) {$ctx2.fillBlock({value:value},$ctx1)})}));
- _st(self)._assert_(_st(absent)._isNil());
- return self}, function($ctx1) {$ctx1.fill(self,"testIfPresent",{d:d,visited:visited,absent:absent},smalltalk.DictionaryTest)})},
- messageSends: ["new", "at:put:", "at:ifPresent:", "assert:equals:", "assert:", "isNil"]}),
- smalltalk.DictionaryTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testIfPresentIfAbsent",
- fn: function (){
- var self=this;
- var d,visited;
- function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
- return smalltalk.withContext(function($ctx1) {
- visited=false;
- d=_st($Dictionary())._new();
- _st(d)._at_put_("hello","world");
- _st(d)._at_ifPresent_ifAbsent_("hello",(function(value){
- return smalltalk.withContext(function($ctx2) {
- visited=value;
- return visited;
- }, function($ctx2) {$ctx2.fillBlock({value:value},$ctx1)})}),(function(){
- return smalltalk.withContext(function($ctx2) {
- visited=true;
- return visited;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
- _st(self)._assert_equals_(visited,"world");
- _st(d)._at_ifPresent_ifAbsent_("buy",(function(value){
- return smalltalk.withContext(function($ctx2) {
- visited=value;
- return visited;
- }, function($ctx2) {$ctx2.fillBlock({value:value},$ctx1)})}),(function(){
- return smalltalk.withContext(function($ctx2) {
- visited=true;
- return visited;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
- _st(self)._assert_(visited);
- return self}, function($ctx1) {$ctx1.fill(self,"testIfPresentIfAbsent",{d:d,visited:visited},smalltalk.DictionaryTest)})},
- messageSends: ["new", "at:put:", "at:ifPresent:ifAbsent:", "assert:equals:", "assert:"]}),
- smalltalk.DictionaryTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testKeys",
- fn: function (){
- var self=this;
- var d;
- function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
- return smalltalk.withContext(function($ctx1) {
- d=_st($Dictionary())._new();
- _st(d)._at_put_((1),(2));
- _st(d)._at_put_((2),(3));
- _st(d)._at_put_((3),(4));
- _st(self)._assert_equals_(_st(d)._keys(),[(1), (2), (3)]);
- return self}, function($ctx1) {$ctx1.fill(self,"testKeys",{d:d},smalltalk.DictionaryTest)})},
- messageSends: ["new", "at:put:", "assert:equals:", "keys"]}),
- smalltalk.DictionaryTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testPointKey",
- fn: function (){
- var self=this;
- var d;
- function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
- return smalltalk.withContext(function($ctx1) {
- d=_st($Dictionary())._new();
- _st(d)._at_put_(_st((1)).__at((1)),"foo");
- _st(self)._assert_equals_(_st(d)._at_(_st((1)).__at((1))),"foo");
- _st(d)._at_put_(_st((1)).__at((1)),"bar");
- _st(self)._assert_equals_(_st(d)._at_(_st((1)).__at((1))),"bar");
- _st(d)._removeKey_(_st((1)).__at((1)));
- _st(self)._assert_equals_(_st(d)._at_ifAbsent_(_st((1)).__at((1)),(function(){
- return smalltalk.withContext(function($ctx2) {
- return "baz";
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"baz");
- _st(self)._deny_(_st(d)._includesKey_(_st((1)).__at((1))));
- return self}, function($ctx1) {$ctx1.fill(self,"testPointKey",{d:d},smalltalk.DictionaryTest)})},
- messageSends: ["new", "at:put:", "@", "assert:equals:", "at:", "removeKey:", "at:ifAbsent:", "deny:", "includesKey:"]}),
- smalltalk.DictionaryTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testPrintString",
- fn: function (){
- var self=this;
- function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- $1=_st($Dictionary())._new();
- _st($1)._at_put_("firstname","James");
- _st($1)._at_put_("lastname","Bond");
- $2=_st($1)._printString();
- _st(self)._assert_equals_($2,"a Dictionary ('firstname' -> 'James' , 'lastname' -> 'Bond')");
- return self}, function($ctx1) {$ctx1.fill(self,"testPrintString",{},smalltalk.DictionaryTest)})},
- messageSends: ["assert:equals:", "at:put:", "new", "printString"]}),
- smalltalk.DictionaryTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testRemoveKey",
- fn: function (){
- var self=this;
- var d,key;
- function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
- return smalltalk.withContext(function($ctx1) {
- d=_st($Dictionary())._new();
- _st(d)._at_put_((1),(2));
- _st(d)._at_put_((2),(3));
- _st(d)._at_put_((3),(4));
- key=(2);
- _st(self)._assert_equals_(_st(d)._keys(),[(1), (2), (3)]);
- _st(d)._removeKey_(key);
- _st(self)._assert_equals_(_st(d)._keys(),[(1), (3)]);
- _st(self)._assert_equals_(_st(d)._values(),[(2), (4)]);
- _st(self)._deny_(_st(d)._includesKey_((2)));
- return self}, function($ctx1) {$ctx1.fill(self,"testRemoveKey",{d:d,key:key},smalltalk.DictionaryTest)})},
- messageSends: ["new", "at:put:", "assert:equals:", "keys", "removeKey:", "values", "deny:", "includesKey:"]}),
- smalltalk.DictionaryTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testRemoveKeyIfAbsent",
- fn: function (){
- var self=this;
- var d,key;
- function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
- return smalltalk.withContext(function($ctx1) {
- d=_st($Dictionary())._new();
- _st(d)._at_put_((1),(2));
- _st(d)._at_put_((2),(3));
- _st(d)._at_put_((3),(4));
- key=(2);
- _st(self)._assert_equals_(_st(d)._removeKey_(key),(3));
- key=(3);
- _st(self)._assert_equals_(_st(d)._removeKey_ifAbsent_(key,(function(){
- return smalltalk.withContext(function($ctx2) {
- return (42);
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),(4));
- key="why";
- _st(self)._assert_equals_(_st(d)._removeKey_ifAbsent_(key,(function(){
- return smalltalk.withContext(function($ctx2) {
- return (42);
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),(42));
- return self}, function($ctx1) {$ctx1.fill(self,"testRemoveKeyIfAbsent",{d:d,key:key},smalltalk.DictionaryTest)})},
- messageSends: ["new", "at:put:", "assert:equals:", "removeKey:", "removeKey:ifAbsent:"]}),
- smalltalk.DictionaryTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testSize",
- fn: function (){
- var self=this;
- var d;
- function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
- return smalltalk.withContext(function($ctx1) {
- d=_st($Dictionary())._new();
- _st(self)._assert_equals_(_st(d)._size(),(0));
- _st(d)._at_put_((1),(2));
- _st(self)._assert_equals_(_st(d)._size(),(1));
- _st(d)._at_put_((2),(3));
- _st(self)._assert_equals_(_st(d)._size(),(2));
- return self}, function($ctx1) {$ctx1.fill(self,"testSize",{d:d},smalltalk.DictionaryTest)})},
- messageSends: ["new", "assert:equals:", "size", "at:put:"]}),
- smalltalk.DictionaryTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testValues",
- fn: function (){
- var self=this;
- var d;
- function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
- return smalltalk.withContext(function($ctx1) {
- d=_st($Dictionary())._new();
- _st(d)._at_put_((1),(2));
- _st(d)._at_put_((2),(3));
- _st(d)._at_put_((3),(4));
- _st(self)._assert_equals_(_st(d)._values(),[(2), (3), (4)]);
- return self}, function($ctx1) {$ctx1.fill(self,"testValues",{d:d},smalltalk.DictionaryTest)})},
- messageSends: ["new", "at:put:", "assert:equals:", "values"]}),
- smalltalk.DictionaryTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "collectionClass",
- fn: function (){
- var self=this;
- function $Dictionary(){return smalltalk.Dictionary||(typeof Dictionary=="undefined"?nil:Dictionary)}
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=$Dictionary();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.DictionaryTest.klass)})},
- messageSends: []}),
- smalltalk.DictionaryTest.klass);
- smalltalk.addClass('SequenceableCollectionTest', smalltalk.IndexableCollectionTest, [], 'Kernel-Tests');
- smalltalk.addClass('ArrayTest', smalltalk.SequenceableCollectionTest, [], 'Kernel-Tests');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testAtIfAbsent",
- fn: function (){
- var self=this;
- var array;
- return smalltalk.withContext(function($ctx1) {
- array=["hello", "world"];
- _st(self)._assert_equals_(_st(array)._at_((1)),"hello");
- _st(self)._assert_equals_(_st(array)._at_((2)),"world");
- _st(self)._assert_equals_(_st(array)._at_ifAbsent_((2),(function(){
- return smalltalk.withContext(function($ctx2) {
- return "not found";
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"world");
- _st(self)._assert_equals_(_st(array)._at_ifAbsent_((0),(function(){
- return smalltalk.withContext(function($ctx2) {
- return "not found";
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"not found");
- _st(self)._assert_equals_(_st(array)._at_ifAbsent_((-10),(function(){
- return smalltalk.withContext(function($ctx2) {
- return "not found";
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"not found");
- _st(self)._assert_equals_(_st(array)._at_ifAbsent_((3),(function(){
- return smalltalk.withContext(function($ctx2) {
- return "not found";
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"not found");
- return self}, function($ctx1) {$ctx1.fill(self,"testAtIfAbsent",{array:array},smalltalk.ArrayTest)})},
- messageSends: ["assert:equals:", "at:", "at:ifAbsent:"]}),
- smalltalk.ArrayTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testFirstN",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st([(1),(2),(3),(4),(5)])._first_((3)),[(1),(2),(3)]);
- return self}, function($ctx1) {$ctx1.fill(self,"testFirstN",{},smalltalk.ArrayTest)})},
- messageSends: ["assert:equals:", "first:"]}),
- smalltalk.ArrayTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testIfEmpty",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st("")._ifEmpty_((function(){
- return smalltalk.withContext(function($ctx2) {
- return "zork";
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"zork");
- return self}, function($ctx1) {$ctx1.fill(self,"testIfEmpty",{},smalltalk.ArrayTest)})},
- messageSends: ["assert:equals:", "ifEmpty:"]}),
- smalltalk.ArrayTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testPrintString",
- fn: function (){
- var self=this;
- var array;
- function $Array(){return smalltalk.Array||(typeof Array=="undefined"?nil:Array)}
- return smalltalk.withContext(function($ctx1) {
- var $1,$2,$3,$4;
- array=_st($Array())._new();
- _st(self)._assert_equals_(_st(array)._printString(),"an Array ()");
- $1=array;
- _st($1)._add_((1));
- $2=_st($1)._add_((3));
- _st(self)._assert_equals_(_st(array)._printString(),"an Array (1 3)");
- _st(array)._add_("foo");
- _st(self)._assert_equals_(_st(array)._printString(),"an Array (1 3 'foo')");
- $3=array;
- _st($3)._remove_((1));
- $4=_st($3)._remove_((3));
- _st(self)._assert_equals_(_st(array)._printString(),"an Array ('foo')");
- _st(array)._addLast_((3));
- _st(self)._assert_equals_(_st(array)._printString(),"an Array ('foo' 3)");
- _st(array)._addLast_((3));
- _st(self)._assert_equals_(_st(array)._printString(),"an Array ('foo' 3 3)");
- return self}, function($ctx1) {$ctx1.fill(self,"testPrintString",{array:array},smalltalk.ArrayTest)})},
- messageSends: ["new", "assert:equals:", "printString", "add:", "remove:", "addLast:"]}),
- smalltalk.ArrayTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "collectionClass",
- fn: function (){
- var self=this;
- function $Array(){return smalltalk.Array||(typeof Array=="undefined"?nil:Array)}
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=$Array();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.ArrayTest.klass)})},
- messageSends: []}),
- smalltalk.ArrayTest.klass);
- smalltalk.addClass('StringTest', smalltalk.SequenceableCollectionTest, [], 'Kernel-Tests');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "collection",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return "hello";
- }, function($ctx1) {$ctx1.fill(self,"collection",{},smalltalk.StringTest)})},
- messageSends: []}),
- smalltalk.StringTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "collectionWithDuplicates",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return "abbaerte";
- }, function($ctx1) {$ctx1.fill(self,"collectionWithDuplicates",{},smalltalk.StringTest)})},
- messageSends: []}),
- smalltalk.StringTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testAddRemove",
- fn: function (){
- var self=this;
- function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st("hello")._add_("a");
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st("hello")._remove_("h");
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
- return self}, function($ctx1) {$ctx1.fill(self,"testAddRemove",{},smalltalk.StringTest)})},
- messageSends: ["should:raise:", "add:", "remove:"]}),
- smalltalk.StringTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testAsArray",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st("hello")._asArray(),["h", "e", "l", "l", "o"]);
- return self}, function($ctx1) {$ctx1.fill(self,"testAsArray",{},smalltalk.StringTest)})},
- messageSends: ["assert:equals:", "asArray"]}),
- smalltalk.StringTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testAt",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st("hello")._at_((1)),"h");
- _st(self)._assert_equals_(_st("hello")._at_((5)),"o");
- _st(self)._assert_equals_(_st("hello")._at_ifAbsent_((6),(function(){
- return smalltalk.withContext(function($ctx2) {
- return nil;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),nil);
- return self}, function($ctx1) {$ctx1.fill(self,"testAt",{},smalltalk.StringTest)})},
- messageSends: ["assert:equals:", "at:", "at:ifAbsent:"]}),
- smalltalk.StringTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testAtPut",
- fn: function (){
- var self=this;
- function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st("hello")._at_put_((1),"a");
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
- return self}, function($ctx1) {$ctx1.fill(self,"testAtPut",{},smalltalk.StringTest)})},
- messageSends: ["should:raise:", "at:put:"]}),
- smalltalk.StringTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testCollect",
- fn: function (){
- var self=this;
- var newCollection;
- return smalltalk.withContext(function($ctx1) {
- newCollection="hheelllloo";
- _st(self)._assertSameContents_as_(_st(_st(self)._collection())._collect_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(each).__comma(each);
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})),newCollection);
- return self}, function($ctx1) {$ctx1.fill(self,"testCollect",{newCollection:newCollection},smalltalk.StringTest)})},
- messageSends: ["assertSameContents:as:", "collect:", ",", "collection"]}),
- smalltalk.StringTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testCopyWithoutAll",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st("*hello* *world*")._copyWithoutAll_("*"),"hello world");
- return self}, function($ctx1) {$ctx1.fill(self,"testCopyWithoutAll",{},smalltalk.StringTest)})},
- messageSends: ["assert:equals:", "copyWithoutAll:"]}),
- smalltalk.StringTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testDetect",
- fn: function (){
- var self=this;
- function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(_st(self)._collection())._detect_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(each).__eq("h");
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})),"h");
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st(self)._collection())._detect_((function(each){
- return smalltalk.withContext(function($ctx3) {
- return _st(each).__eq((6));
- }, function($ctx3) {$ctx3.fillBlock({each:each},$ctx1)})}));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
- return self}, function($ctx1) {$ctx1.fill(self,"testDetect",{},smalltalk.StringTest)})},
- messageSends: ["assert:equals:", "detect:", "=", "collection", "should:raise:"]}),
- smalltalk.StringTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testEquality",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_("hello","hello");
- _st(self)._deny_(_st("hello").__eq("world"));
- _st(self)._deny_(_st("hello").__eq(_st([])._at_ifAbsent_((1),(function(){
- return smalltalk.withContext(function($ctx2) {
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))));
- _st(self)._assert_equals_("hello",_st("hello")._yourself());
- _st(self)._assert_equals_(_st("hello")._yourself(),"hello");
- _st(self)._deny_(_st("").__eq((0)));
- return self}, function($ctx1) {$ctx1.fill(self,"testEquality",{},smalltalk.StringTest)})},
- messageSends: ["assert:equals:", "deny:", "=", "at:ifAbsent:", "yourself"]}),
- smalltalk.StringTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testIdentity",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_(_st("hello").__eq_eq("hello"));
- _st(self)._deny_(_st("hello").__eq_eq("world"));
- _st(self)._assert_(_st("hello").__eq_eq(_st("hello")._yourself()));
- _st(self)._assert_(_st(_st("hello")._yourself()).__eq_eq("hello"));
- _st(self)._deny_(_st("").__eq_eq((0)));
- return self}, function($ctx1) {$ctx1.fill(self,"testIdentity",{},smalltalk.StringTest)})},
- messageSends: ["assert:", "==", "deny:", "yourself"]}),
- smalltalk.StringTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testIncludesSubString",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_(_st("amber")._includesSubString_("ber"));
- _st(self)._deny_(_st("amber")._includesSubString_("zork"));
- return self}, function($ctx1) {$ctx1.fill(self,"testIncludesSubString",{},smalltalk.StringTest)})},
- messageSends: ["assert:", "includesSubString:", "deny:"]}),
- smalltalk.StringTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testIndexOf",
- fn: function (){
- var self=this;
- function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(_st(self)._collection())._indexOf_("e"),(2));
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st(self)._collection())._indexOf_((999));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
- _st(self)._assert_equals_(_st(_st(self)._collection())._indexOf_ifAbsent_((999),(function(){
- return smalltalk.withContext(function($ctx2) {
- return "sentinel";
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"sentinel");
- return self}, function($ctx1) {$ctx1.fill(self,"testIndexOf",{},smalltalk.StringTest)})},
- messageSends: ["assert:equals:", "indexOf:", "collection", "should:raise:", "indexOf:ifAbsent:"]}),
- smalltalk.StringTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testJoin",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(",")._join_(["hello", "world"]),"hello,world");
- return self}, function($ctx1) {$ctx1.fill(self,"testJoin",{},smalltalk.StringTest)})},
- messageSends: ["assert:equals:", "join:"]}),
- smalltalk.StringTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testSelect",
- fn: function (){
- var self=this;
- var newCollection;
- return smalltalk.withContext(function($ctx1) {
- newCollection="o";
- _st(self)._assertSameContents_as_(_st(_st(self)._collection())._select_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(each).__eq("o");
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})})),newCollection);
- return self}, function($ctx1) {$ctx1.fill(self,"testSelect",{newCollection:newCollection},smalltalk.StringTest)})},
- messageSends: ["assertSameContents:as:", "select:", "=", "collection"]}),
- smalltalk.StringTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testSize",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st("smalltalk")._size(),(9));
- _st(self)._assert_equals_(_st("")._size(),(0));
- return self}, function($ctx1) {$ctx1.fill(self,"testSize",{},smalltalk.StringTest)})},
- messageSends: ["assert:equals:", "size"]}),
- smalltalk.StringTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testStreamContents",
- fn: function (){
- var self=this;
- function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)}
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- _st(self)._assert_equals_(_st($String())._streamContents_((function(aStream){
- return smalltalk.withContext(function($ctx2) {
- $1=aStream;
- _st($1)._nextPutAll_("hello");
- _st($1)._space();
- $2=_st($1)._nextPutAll_("world");
- return $2;
- }, function($ctx2) {$ctx2.fillBlock({aStream:aStream},$ctx1)})})),"hello world");
- return self}, function($ctx1) {$ctx1.fill(self,"testStreamContents",{},smalltalk.StringTest)})},
- messageSends: ["assert:equals:", "streamContents:", "nextPutAll:", "space"]}),
- smalltalk.StringTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "collectionClass",
- fn: function (){
- var self=this;
- function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)}
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=$String();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.StringTest.klass)})},
- messageSends: []}),
- smalltalk.StringTest.klass);
- smalltalk.addClass('ConsoleTranscriptTest', smalltalk.TestCase, [], 'Kernel-Tests');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testShow",
- fn: function (){
- var self=this;
- var originalTranscript;
- function $Transcript(){return smalltalk.Transcript||(typeof Transcript=="undefined"?nil:Transcript)}
- function $ConsoleTranscript(){return smalltalk.ConsoleTranscript||(typeof ConsoleTranscript=="undefined"?nil:ConsoleTranscript)}
- function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
- return smalltalk.withContext(function($ctx1) {
- originalTranscript=_st($Transcript())._current();
- _st($Transcript())._register_(_st($ConsoleTranscript())._new());
- _st(self)._shouldnt_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st($Transcript())._show_("Hello console!");
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
- _st(self)._shouldnt_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st($Transcript())._show_(window);
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
- _st($Transcript())._register_(originalTranscript);
- return self}, function($ctx1) {$ctx1.fill(self,"testShow",{originalTranscript:originalTranscript},smalltalk.ConsoleTranscriptTest)})},
- messageSends: ["current", "register:", "new", "shouldnt:raise:", "show:"]}),
- smalltalk.ConsoleTranscriptTest);
- smalltalk.addClass('JSObjectProxyTest', smalltalk.TestCase, [], 'Kernel-Tests');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "jsObject",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return jsObject = {a: 1, b: function() {return 2;}, c: function(object) {return object;}, d: '', 'e': null, 'f': undefined};
- return self}, function($ctx1) {$ctx1.fill(self,"jsObject",{},smalltalk.JSObjectProxyTest)})},
- messageSends: []}),
- smalltalk.JSObjectProxyTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testAtIfAbsent",
- fn: function (){
- var self=this;
- var testObject;
- return smalltalk.withContext(function($ctx1) {
- testObject=_st(self)._jsObject();
- _st(self)._assert_equals_(_st(testObject)._at_ifAbsent_("abc",(function(){
- return smalltalk.withContext(function($ctx2) {
- return "Property does not exist";
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"Property does not exist");
- _st(self)._assert_equals_(_st(testObject)._at_ifAbsent_("e",(function(){
- return smalltalk.withContext(function($ctx2) {
- return "Property does not exist";
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),nil);
- _st(self)._assert_equals_(_st(testObject)._at_ifAbsent_("a",(function(){
- return smalltalk.withContext(function($ctx2) {
- return "Property does not exist";
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),(1));
- _st(self)._assert_equals_(_st(testObject)._at_ifAbsent_("f",(function(){
- return smalltalk.withContext(function($ctx2) {
- return "Property does not exist";
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),nil);
- return self}, function($ctx1) {$ctx1.fill(self,"testAtIfAbsent",{testObject:testObject},smalltalk.JSObjectProxyTest)})},
- messageSends: ["jsObject", "assert:equals:", "at:ifAbsent:"]}),
- smalltalk.JSObjectProxyTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testAtIfPresent",
- fn: function (){
- var self=this;
- var testObject;
- return smalltalk.withContext(function($ctx1) {
- testObject=_st(self)._jsObject();
- _st(self)._assert_equals_(_st(testObject)._at_ifPresent_("abc",(function(x){
- return smalltalk.withContext(function($ctx2) {
- return _st("hello ").__comma(_st(x)._asString());
- }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1)})})),nil);
- _st(self)._assert_equals_(_st(testObject)._at_ifPresent_("e",(function(x){
- return smalltalk.withContext(function($ctx2) {
- return _st("hello ").__comma(_st(x)._asString());
- }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1)})})),"hello nil");
- _st(self)._assert_equals_(_st(testObject)._at_ifPresent_("a",(function(x){
- return smalltalk.withContext(function($ctx2) {
- return _st("hello ").__comma(_st(x)._asString());
- }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1)})})),"hello 1");
- _st(self)._assert_equals_(_st(testObject)._at_ifPresent_("f",(function(x){
- return smalltalk.withContext(function($ctx2) {
- return _st("hello ").__comma(_st(x)._asString());
- }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1)})})),"hello nil");
- return self}, function($ctx1) {$ctx1.fill(self,"testAtIfPresent",{testObject:testObject},smalltalk.JSObjectProxyTest)})},
- messageSends: ["jsObject", "assert:equals:", "at:ifPresent:", ",", "asString"]}),
- smalltalk.JSObjectProxyTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testAtIfPresentIfAbsent",
- fn: function (){
- var self=this;
- var testObject;
- return smalltalk.withContext(function($ctx1) {
- testObject=_st(self)._jsObject();
- _st(self)._assert_equals_(_st(testObject)._at_ifPresent_ifAbsent_("abc",(function(x){
- return smalltalk.withContext(function($ctx2) {
- return _st("hello ").__comma(_st(x)._asString());
- }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1)})}),(function(){
- return smalltalk.withContext(function($ctx2) {
- return "not present";
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"not present");
- _st(self)._assert_equals_(_st(testObject)._at_ifPresent_ifAbsent_("e",(function(x){
- return smalltalk.withContext(function($ctx2) {
- return _st("hello ").__comma(_st(x)._asString());
- }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1)})}),(function(){
- return smalltalk.withContext(function($ctx2) {
- return "not present";
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"hello nil");
- _st(self)._assert_equals_(_st(testObject)._at_ifPresent_ifAbsent_("a",(function(x){
- return smalltalk.withContext(function($ctx2) {
- return _st("hello ").__comma(_st(x)._asString());
- }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1)})}),(function(){
- return smalltalk.withContext(function($ctx2) {
- return "not present";
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"hello 1");
- _st(self)._assert_equals_(_st(testObject)._at_ifPresent_ifAbsent_("f",(function(x){
- return smalltalk.withContext(function($ctx2) {
- return _st("hello ").__comma(_st(x)._asString());
- }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1)})}),(function(){
- return smalltalk.withContext(function($ctx2) {
- return "not present";
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})),"hello nil");
- return self}, function($ctx1) {$ctx1.fill(self,"testAtIfPresentIfAbsent",{testObject:testObject},smalltalk.JSObjectProxyTest)})},
- messageSends: ["jsObject", "assert:equals:", "at:ifPresent:ifAbsent:", ",", "asString"]}),
- smalltalk.JSObjectProxyTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testDNU",
- fn: function (){
- var self=this;
- function $MessageNotUnderstood(){return smalltalk.MessageNotUnderstood||(typeof MessageNotUnderstood=="undefined"?nil:MessageNotUnderstood)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st(self)._jsObject())._foo();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- return self}, function($ctx1) {$ctx1.fill(self,"testDNU",{},smalltalk.JSObjectProxyTest)})},
- messageSends: ["should:raise:", "foo", "jsObject"]}),
- smalltalk.JSObjectProxyTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testMessageSend",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(_st(self)._jsObject())._a(),(1));
- _st(self)._assert_equals_(_st(_st(self)._jsObject())._b(),(2));
- _st(self)._assert_equals_(_st(_st(self)._jsObject())._c_((3)),(3));
- return self}, function($ctx1) {$ctx1.fill(self,"testMessageSend",{},smalltalk.JSObjectProxyTest)})},
- messageSends: ["assert:equals:", "a", "jsObject", "b", "c:"]}),
- smalltalk.JSObjectProxyTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testMethodWithArguments",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(_st(self)._jsObject())._c_((1)),(1));
- return self}, function($ctx1) {$ctx1.fill(self,"testMethodWithArguments",{},smalltalk.JSObjectProxyTest)})},
- messageSends: ["assert:equals:", "c:", "jsObject"]}),
- smalltalk.JSObjectProxyTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testPrinting",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(_st(self)._jsObject())._printString(),"[object Object]");
- return self}, function($ctx1) {$ctx1.fill(self,"testPrinting",{},smalltalk.JSObjectProxyTest)})},
- messageSends: ["assert:equals:", "printString", "jsObject"]}),
- smalltalk.JSObjectProxyTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testPropertyThatReturnsEmptyString",
- fn: function (){
- var self=this;
- var object;
- return smalltalk.withContext(function($ctx1) {
- object=_st(self)._jsObject();
- _st(self)._assert_equals_(_st(object)._d(),"");
- _st(object)._d_("hello");
- _st(self)._assert_equals_(_st(object)._d(),"hello");
- return self}, function($ctx1) {$ctx1.fill(self,"testPropertyThatReturnsEmptyString",{object:object},smalltalk.JSObjectProxyTest)})},
- messageSends: ["jsObject", "assert:equals:", "d", "d:"]}),
- smalltalk.JSObjectProxyTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testPropertyThatReturnsUndefined",
- fn: function (){
- var self=this;
- var object;
- function $MessageNotUnderstood(){return smalltalk.MessageNotUnderstood||(typeof MessageNotUnderstood=="undefined"?nil:MessageNotUnderstood)}
- return smalltalk.withContext(function($ctx1) {
- object=_st(self)._jsObject();
- _st(self)._shouldnt_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(object)._e();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._assert_(_st(_st(object)._e())._isNil());
- return self}, function($ctx1) {$ctx1.fill(self,"testPropertyThatReturnsUndefined",{object:object},smalltalk.JSObjectProxyTest)})},
- messageSends: ["jsObject", "shouldnt:raise:", "e", "assert:", "isNil"]}),
- smalltalk.JSObjectProxyTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testValue",
- fn: function (){
- var self=this;
- var testObject;
- return smalltalk.withContext(function($ctx1) {
- testObject=_st(self)._jsObject();
- _st(self)._assert_equals_(_st(_st(testObject)._value())._printString(),"[object Object]");
- _st(testObject)._at_put_("value","aValue");
- _st(self)._assert_equals_(_st(testObject)._value(),"aValue");
- return self}, function($ctx1) {$ctx1.fill(self,"testValue",{testObject:testObject},smalltalk.JSObjectProxyTest)})},
- messageSends: ["jsObject", "assert:equals:", "printString", "value", "at:put:"]}),
- smalltalk.JSObjectProxyTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testYourself",
- fn: function (){
- var self=this;
- var object;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- $1=_st(self)._jsObject();
- _st($1)._d_("test");
- $2=_st($1)._yourself();
- object=$2;
- _st(self)._assert_equals_(_st(object)._d(),"test");
- return self}, function($ctx1) {$ctx1.fill(self,"testYourself",{object:object},smalltalk.JSObjectProxyTest)})},
- messageSends: ["d:", "jsObject", "yourself", "assert:equals:", "d"]}),
- smalltalk.JSObjectProxyTest);
- smalltalk.addClass('JavaScriptExceptionTest', smalltalk.TestCase, [], 'Kernel-Tests');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testCatchingException",
- fn: function (){
- var self=this;
- function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
- return smalltalk.withContext(function($ctx1) {
- _st((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(self)._throwException();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._on_do_($Error(),(function(error){
- return smalltalk.withContext(function($ctx2) {
- return _st(self)._assert_(_st(_st(error)._exception()).__eq("test"));
- }, function($ctx2) {$ctx2.fillBlock({error:error},$ctx1)})}));
- return self}, function($ctx1) {$ctx1.fill(self,"testCatchingException",{},smalltalk.JavaScriptExceptionTest)})},
- messageSends: ["on:do:", "assert:", "=", "exception", "throwException"]}),
- smalltalk.JavaScriptExceptionTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testRaisingException",
- fn: function (){
- var self=this;
- function $JavaScriptException(){return smalltalk.JavaScriptException||(typeof JavaScriptException=="undefined"?nil:JavaScriptException)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(self)._throwException();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$JavaScriptException());
- return self}, function($ctx1) {$ctx1.fill(self,"testRaisingException",{},smalltalk.JavaScriptExceptionTest)})},
- messageSends: ["should:raise:", "throwException"]}),
- smalltalk.JavaScriptExceptionTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "throwException",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- throw 'test';
- return self}, function($ctx1) {$ctx1.fill(self,"throwException",{},smalltalk.JavaScriptExceptionTest)})},
- messageSends: []}),
- smalltalk.JavaScriptExceptionTest);
- smalltalk.addClass('MessageSendTest', smalltalk.TestCase, [], 'Kernel-Tests');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testValue",
- fn: function (){
- var self=this;
- var messageSend;
- function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)}
- function $MessageSend(){return smalltalk.MessageSend||(typeof MessageSend=="undefined"?nil:MessageSend)}
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- $1=_st($MessageSend())._new();
- _st($1)._receiver_(_st($Object())._new());
- _st($1)._selector_("asString");
- $2=_st($1)._yourself();
- messageSend=$2;
- _st(self)._assert_equals_(_st(messageSend)._value(),"an Object");
- return self}, function($ctx1) {$ctx1.fill(self,"testValue",{messageSend:messageSend},smalltalk.MessageSendTest)})},
- messageSends: ["receiver:", "new", "selector:", "yourself", "assert:equals:", "value"]}),
- smalltalk.MessageSendTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testValueWithArguments",
- fn: function (){
- var self=this;
- var messageSend;
- function $MessageSend(){return smalltalk.MessageSend||(typeof MessageSend=="undefined"?nil:MessageSend)}
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- $1=_st($MessageSend())._new();
- _st($1)._receiver_((2));
- _st($1)._selector_("+");
- $2=_st($1)._yourself();
- messageSend=$2;
- _st(self)._assert_equals_(_st(messageSend)._value_((3)),(5));
- _st(self)._assert_equals_(_st(messageSend)._valueWithPossibleArguments_([(4)]),(6));
- return self}, function($ctx1) {$ctx1.fill(self,"testValueWithArguments",{messageSend:messageSend},smalltalk.MessageSendTest)})},
- messageSends: ["receiver:", "new", "selector:", "yourself", "assert:equals:", "value:", "valueWithPossibleArguments:"]}),
- smalltalk.MessageSendTest);
- smalltalk.addClass('NumberTest', smalltalk.TestCase, [], 'Kernel-Tests');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testAbs",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st((4))._abs(),(4));
- _st(self)._assert_equals_(_st((-4))._abs(),(4));
- return self}, function($ctx1) {$ctx1.fill(self,"testAbs",{},smalltalk.NumberTest)})},
- messageSends: ["assert:equals:", "abs"]}),
- smalltalk.NumberTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testArithmetic",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st((1.5)).__plus((1)),(2.5));
- _st(self)._assert_equals_(_st((2)).__minus((1)),(1));
- _st(self)._assert_equals_(_st((-2)).__minus((1)),(-3));
- _st(self)._assert_equals_(_st((12)).__slash((2)),(6));
- _st(self)._assert_equals_(_st((3)).__star((4)),(12));
- _st(self)._assert_equals_(_st(_st((1)).__plus((2))).__star((3)),(9));
- _st(self)._assert_equals_(_st((1)).__plus(_st((2)).__star((3))),(7));
- return self}, function($ctx1) {$ctx1.fill(self,"testArithmetic",{},smalltalk.NumberTest)})},
- messageSends: ["assert:equals:", "+", "-", "/", "*"]}),
- smalltalk.NumberTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testComparison",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_(_st((3)).__gt((2)));
- _st(self)._assert_(_st((2)).__lt((3)));
- _st(self)._deny_(_st((3)).__lt((2)));
- _st(self)._deny_(_st((2)).__gt((3)));
- _st(self)._assert_(_st((3)).__gt_eq((3)));
- _st(self)._assert_(_st((3.1)).__gt_eq((3)));
- _st(self)._assert_(_st((3)).__lt_eq((3)));
- _st(self)._assert_(_st((3)).__lt_eq((3.1)));
- return self}, function($ctx1) {$ctx1.fill(self,"testComparison",{},smalltalk.NumberTest)})},
- messageSends: ["assert:", ">", "<", "deny:", ">=", "<="]}),
- smalltalk.NumberTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testCopying",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_(_st(_st((1))._copy()).__eq_eq((1)));
- _st(self)._assert_(_st(_st((1))._deepCopy()).__eq_eq((1)));
- return self}, function($ctx1) {$ctx1.fill(self,"testCopying",{},smalltalk.NumberTest)})},
- messageSends: ["assert:", "==", "copy", "deepCopy"]}),
- smalltalk.NumberTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testEquality",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_(_st((1)).__eq((1)));
- _st(self)._assert_(_st((0)).__eq((0)));
- _st(self)._deny_(_st((1)).__eq((0)));
- _st(self)._assert_(_st(_st((1))._yourself()).__eq((1)));
- _st(self)._assert_(_st((1)).__eq(_st((1))._yourself()));
- _st(self)._assert_(_st(_st((1))._yourself()).__eq(_st((1))._yourself()));
- _st(self)._deny_(_st((0)).__eq(false));
- _st(self)._deny_(_st(false).__eq((0)));
- _st(self)._deny_(_st("").__eq((0)));
- _st(self)._deny_(_st((0)).__eq(""));
- return self}, function($ctx1) {$ctx1.fill(self,"testEquality",{},smalltalk.NumberTest)})},
- messageSends: ["assert:", "=", "deny:", "yourself"]}),
- smalltalk.NumberTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testHexNumbers",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_((9),(9));
- _st(self)._assert_equals_(_st((10))._truncated(),(10));
- _st(self)._assert_equals_(_st((11))._truncated(),(11));
- _st(self)._assert_equals_(_st((12))._truncated(),(12));
- _st(self)._assert_equals_(_st((13))._truncated(),(13));
- _st(self)._assert_equals_(_st((14))._truncated(),(14));
- _st(self)._assert_equals_(_st((15))._truncated(),(15));
- return self}, function($ctx1) {$ctx1.fill(self,"testHexNumbers",{},smalltalk.NumberTest)})},
- messageSends: ["assert:equals:", "truncated"]}),
- smalltalk.NumberTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testIdentity",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_(_st((1)).__eq_eq((1)));
- _st(self)._assert_(_st((0)).__eq_eq((0)));
- _st(self)._deny_(_st((1)).__eq_eq((0)));
- _st(self)._assert_(_st(_st((1))._yourself()).__eq_eq((1)));
- _st(self)._assert_(_st((1)).__eq_eq(_st((1))._yourself()));
- _st(self)._assert_(_st(_st((1))._yourself()).__eq_eq(_st((1))._yourself()));
- _st(self)._deny_(_st((1)).__eq_eq((2)));
- return self}, function($ctx1) {$ctx1.fill(self,"testIdentity",{},smalltalk.NumberTest)})},
- messageSends: ["assert:", "==", "deny:", "yourself"]}),
- smalltalk.NumberTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testInvalidHexNumbers",
- fn: function (){
- var self=this;
- function $MessageNotUnderstood(){return smalltalk.MessageNotUnderstood||(typeof MessageNotUnderstood=="undefined"?nil:MessageNotUnderstood)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rG();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rg();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rH();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rh();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rI();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._ri();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rJ();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rj();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rK();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rk();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rL();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rl();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rM();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rm();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rN();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rn();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rO();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._ro();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rP();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rp();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rQ();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rq();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rR();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rr();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rS();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rs();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rT();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rt();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rU();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._ru();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rV();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rv();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rW();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rw();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rX();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rx();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rY();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._ry();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rZ();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((16))._rz();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((11259375))._Z();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- return self}, function($ctx1) {$ctx1.fill(self,"testInvalidHexNumbers",{},smalltalk.NumberTest)})},
- messageSends: ["should:raise:", "rG", "rg", "rH", "rh", "rI", "ri", "rJ", "rj", "rK", "rk", "rL", "rl", "rM", "rm", "rN", "rn", "rO", "ro", "rP", "rp", "rQ", "rq", "rR", "rr", "rS", "rs", "rT", "rt", "rU", "ru", "rV", "rv", "rW", "rw", "rX", "rx", "rY", "ry", "rZ", "rz", "Z"]}),
- smalltalk.NumberTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testMinMax",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st((2))._max_((5)),(5));
- _st(self)._assert_equals_(_st((2))._min_((5)),(2));
- return self}, function($ctx1) {$ctx1.fill(self,"testMinMax",{},smalltalk.NumberTest)})},
- messageSends: ["assert:equals:", "max:", "min:"]}),
- smalltalk.NumberTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testNegated",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st((3))._negated(),(-3));
- _st(self)._assert_equals_(_st((-3))._negated(),(3));
- return self}, function($ctx1) {$ctx1.fill(self,"testNegated",{},smalltalk.NumberTest)})},
- messageSends: ["assert:equals:", "negated"]}),
- smalltalk.NumberTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testPrintShowingDecimalPlaces",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st((23))._printShowingDecimalPlaces_((2)),"23.00");
- _st(self)._assert_equals_(_st((23.5698))._printShowingDecimalPlaces_((2)),"23.57");
- _st(self)._assert_equals_(_st(_st((234.567))._negated())._printShowingDecimalPlaces_((5)),"-234.56700");
- _st(self)._assert_equals_(_st((23.4567))._printShowingDecimalPlaces_((0)),"23");
- _st(self)._assert_equals_(_st((23.5567))._printShowingDecimalPlaces_((0)),"24");
- _st(self)._assert_equals_(_st(_st((23.4567))._negated())._printShowingDecimalPlaces_((0)),"-23");
- _st(self)._assert_equals_(_st(_st((23.5567))._negated())._printShowingDecimalPlaces_((0)),"-24");
- _st(self)._assert_equals_(_st((100000000))._printShowingDecimalPlaces_((1)),"100000000.0");
- _st(self)._assert_equals_(_st((0.98))._printShowingDecimalPlaces_((5)),"0.98000");
- _st(self)._assert_equals_(_st(_st((0.98))._negated())._printShowingDecimalPlaces_((2)),"-0.98");
- _st(self)._assert_equals_(_st((2.567))._printShowingDecimalPlaces_((2)),"2.57");
- _st(self)._assert_equals_(_st((-2.567))._printShowingDecimalPlaces_((2)),"-2.57");
- _st(self)._assert_equals_(_st((0))._printShowingDecimalPlaces_((2)),"0.00");
- return self}, function($ctx1) {$ctx1.fill(self,"testPrintShowingDecimalPlaces",{},smalltalk.NumberTest)})},
- messageSends: ["assert:equals:", "printShowingDecimalPlaces:", "negated"]}),
- smalltalk.NumberTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testRounded",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st((3))._rounded(),(3));
- _st(self)._assert_equals_(_st((3.212))._rounded(),(3));
- _st(self)._assert_equals_(_st((3.51))._rounded(),(4));
- return self}, function($ctx1) {$ctx1.fill(self,"testRounded",{},smalltalk.NumberTest)})},
- messageSends: ["assert:equals:", "rounded"]}),
- smalltalk.NumberTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testSqrt",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st((4))._sqrt(),(2));
- _st(self)._assert_equals_(_st((16))._sqrt(),(4));
- return self}, function($ctx1) {$ctx1.fill(self,"testSqrt",{},smalltalk.NumberTest)})},
- messageSends: ["assert:equals:", "sqrt"]}),
- smalltalk.NumberTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testSquared",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st((4))._squared(),(16));
- return self}, function($ctx1) {$ctx1.fill(self,"testSquared",{},smalltalk.NumberTest)})},
- messageSends: ["assert:equals:", "squared"]}),
- smalltalk.NumberTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testTimesRepeat",
- fn: function (){
- var self=this;
- var i;
- return smalltalk.withContext(function($ctx1) {
- i=(0);
- _st((0))._timesRepeat_((function(){
- return smalltalk.withContext(function($ctx2) {
- i=_st(i).__plus((1));
- return i;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
- _st(self)._assert_equals_(i,(0));
- _st((5))._timesRepeat_((function(){
- return smalltalk.withContext(function($ctx2) {
- i=_st(i).__plus((1));
- return i;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
- _st(self)._assert_equals_(i,(5));
- return self}, function($ctx1) {$ctx1.fill(self,"testTimesRepeat",{i:i},smalltalk.NumberTest)})},
- messageSends: ["timesRepeat:", "+", "assert:equals:"]}),
- smalltalk.NumberTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testTo",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st((1))._to_((5)),[(1), (2), (3), (4), (5)]);
- return self}, function($ctx1) {$ctx1.fill(self,"testTo",{},smalltalk.NumberTest)})},
- messageSends: ["assert:equals:", "to:"]}),
- smalltalk.NumberTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testToBy",
- fn: function (){
- var self=this;
- function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st((0))._to_by_((6),(2)),[(0), (2), (4), (6)]);
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st((1))._to_by_((4),(0));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
- return self}, function($ctx1) {$ctx1.fill(self,"testToBy",{},smalltalk.NumberTest)})},
- messageSends: ["assert:equals:", "to:by:", "should:raise:"]}),
- smalltalk.NumberTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testTruncated",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st((3))._truncated(),(3));
- _st(self)._assert_equals_(_st((3.212))._truncated(),(3));
- _st(self)._assert_equals_(_st((3.51))._truncated(),(3));
- return self}, function($ctx1) {$ctx1.fill(self,"testTruncated",{},smalltalk.NumberTest)})},
- messageSends: ["assert:equals:", "truncated"]}),
- smalltalk.NumberTest);
- smalltalk.addClass('ObjectMock', smalltalk.Object, ['foo', 'bar'], 'Kernel-Tests');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "foo",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=self["@foo"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"foo",{},smalltalk.ObjectMock)})},
- messageSends: []}),
- smalltalk.ObjectMock);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "foo:",
- fn: function (anObject){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- self["@foo"]=anObject;
- return self}, function($ctx1) {$ctx1.fill(self,"foo:",{anObject:anObject},smalltalk.ObjectMock)})},
- messageSends: []}),
- smalltalk.ObjectMock);
- smalltalk.addClass('ObjectTest', smalltalk.TestCase, [], 'Kernel-Tests');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "notDefined",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return undefined;;
- return self}, function($ctx1) {$ctx1.fill(self,"notDefined",{},smalltalk.ObjectTest)})},
- messageSends: []}),
- smalltalk.ObjectTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testBasicAccess",
- fn: function (){
- var self=this;
- var o;
- function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)}
- return smalltalk.withContext(function($ctx1) {
- o=_st($Object())._new();
- _st(o)._basicAt_put_("a",(1));
- _st(self)._assert_equals_(_st(o)._basicAt_("a"),(1));
- _st(self)._assert_equals_(_st(o)._basicAt_("b"),nil);
- return self}, function($ctx1) {$ctx1.fill(self,"testBasicAccess",{o:o},smalltalk.ObjectTest)})},
- messageSends: ["new", "basicAt:put:", "assert:equals:", "basicAt:"]}),
- smalltalk.ObjectTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testBasicPerform",
- fn: function (){
- var self=this;
- var o;
- function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)}
- return smalltalk.withContext(function($ctx1) {
- o=_st($Object())._new();
- _st(o)._basicAt_put_("func",(function(){
- return smalltalk.withContext(function($ctx2) {
- return "hello";
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
- _st(o)._basicAt_put_("func2",(function(a){
- return smalltalk.withContext(function($ctx2) {
- return _st(a).__plus((1));
- }, function($ctx2) {$ctx2.fillBlock({a:a},$ctx1)})}));
- _st(self)._assert_equals_(_st(o)._basicPerform_("func"),"hello");
- _st(self)._assert_equals_(_st(o)._basicPerform_withArguments_("func2",[(3)]),(4));
- return self}, function($ctx1) {$ctx1.fill(self,"testBasicPerform",{o:o},smalltalk.ObjectTest)})},
- messageSends: ["new", "basicAt:put:", "+", "assert:equals:", "basicPerform:", "basicPerform:withArguments:"]}),
- smalltalk.ObjectTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testDNU",
- fn: function (){
- var self=this;
- function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)}
- function $MessageNotUnderstood(){return smalltalk.MessageNotUnderstood||(typeof MessageNotUnderstood=="undefined"?nil:MessageNotUnderstood)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st($Object())._new())._foo();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$MessageNotUnderstood());
- return self}, function($ctx1) {$ctx1.fill(self,"testDNU",{},smalltalk.ObjectTest)})},
- messageSends: ["should:raise:", "foo", "new"]}),
- smalltalk.ObjectTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testEquality",
- fn: function (){
- var self=this;
- var o;
- function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)}
- return smalltalk.withContext(function($ctx1) {
- o=_st($Object())._new();
- _st(self)._deny_(_st(o).__eq(_st($Object())._new()));
- _st(self)._assert_(_st(o).__eq(o));
- _st(self)._assert_(_st(_st(o)._yourself()).__eq(o));
- _st(self)._assert_(_st(o).__eq(_st(o)._yourself()));
- return self}, function($ctx1) {$ctx1.fill(self,"testEquality",{o:o},smalltalk.ObjectTest)})},
- messageSends: ["new", "deny:", "=", "assert:", "yourself"]}),
- smalltalk.ObjectTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testHalt",
- fn: function (){
- var self=this;
- function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)}
- function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st($Object())._new())._halt();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
- return self}, function($ctx1) {$ctx1.fill(self,"testHalt",{},smalltalk.ObjectTest)})},
- messageSends: ["should:raise:", "halt", "new"]}),
- smalltalk.ObjectTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testIdentity",
- fn: function (){
- var self=this;
- var o;
- function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)}
- return smalltalk.withContext(function($ctx1) {
- o=_st($Object())._new();
- _st(self)._deny_(_st(o).__eq_eq(_st($Object())._new()));
- _st(self)._assert_(_st(o).__eq_eq(o));
- _st(self)._assert_(_st(_st(o)._yourself()).__eq_eq(o));
- _st(self)._assert_(_st(o).__eq_eq(_st(o)._yourself()));
- return self}, function($ctx1) {$ctx1.fill(self,"testIdentity",{o:o},smalltalk.ObjectTest)})},
- messageSends: ["new", "deny:", "==", "assert:", "yourself"]}),
- smalltalk.ObjectTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testIfNil",
- fn: function (){
- var self=this;
- function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)}
- return smalltalk.withContext(function($ctx1) {
- var $1,$4,$3,$2,$5,$7,$6,$8,$10,$9,$11,$13,$12;
- _st(self)._deny_(_st(_st($Object())._new())._isNil());
- $1=self;
- $4=_st($Object())._new();
- if(($receiver = $4) == nil || $receiver == undefined){
- $3=true;
- } else {
- $3=$4;
- };
- $2=_st($3).__eq(true);
- _st($1)._deny_($2);
- $5=self;
- $7=_st($Object())._new();
- if(($receiver = $7) == nil || $receiver == undefined){
- $6=$7;
- } else {
- $6=true;
- };
- _st($5)._assert_equals_($6,true);
- $8=self;
- $10=_st($Object())._new();
- if(($receiver = $10) == nil || $receiver == undefined){
- $9=false;
- } else {
- $9=true;
- };
- _st($8)._assert_equals_($9,true);
- $11=self;
- $13=_st($Object())._new();
- if(($receiver = $13) == nil || $receiver == undefined){
- $12=false;
- } else {
- $12=true;
- };
- _st($11)._assert_equals_($12,true);
- return self}, function($ctx1) {$ctx1.fill(self,"testIfNil",{},smalltalk.ObjectTest)})},
- messageSends: ["deny:", "isNil", "new", "=", "ifNil:", "assert:equals:", "ifNotNil:", "ifNil:ifNotNil:", "ifNotNil:ifNil:"]}),
- smalltalk.ObjectTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testInstVars",
- fn: function (){
- var self=this;
- var o;
- function $ObjectMock(){return smalltalk.ObjectMock||(typeof ObjectMock=="undefined"?nil:ObjectMock)}
- return smalltalk.withContext(function($ctx1) {
- o=_st($ObjectMock())._new();
- _st(self)._assert_equals_(_st(o)._instVarAt_("foo"),nil);
- _st(o)._instVarAt_put_("foo",(1));
- _st(self)._assert_equals_(_st(o)._instVarAt_("foo"),(1));
- _st(self)._assert_equals_(_st(o)._instVarAt_("foo"),(1));
- return self}, function($ctx1) {$ctx1.fill(self,"testInstVars",{o:o},smalltalk.ObjectTest)})},
- messageSends: ["new", "assert:equals:", "instVarAt:", "instVarAt:put:"]}),
- smalltalk.ObjectTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testNilUndefined",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(self)._notDefined(),nil);
- return self}, function($ctx1) {$ctx1.fill(self,"testNilUndefined",{},smalltalk.ObjectTest)})},
- messageSends: ["assert:equals:", "notDefined"]}),
- smalltalk.ObjectTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testYourself",
- fn: function (){
- var self=this;
- var o;
- function $ObjectMock(){return smalltalk.ObjectMock||(typeof ObjectMock=="undefined"?nil:ObjectMock)}
- return smalltalk.withContext(function($ctx1) {
- o=_st($ObjectMock())._new();
- _st(self)._assert_(_st(_st(o)._yourself()).__eq_eq(o));
- return self}, function($ctx1) {$ctx1.fill(self,"testYourself",{o:o},smalltalk.ObjectTest)})},
- messageSends: ["new", "assert:", "==", "yourself"]}),
- smalltalk.ObjectTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testidentityHash",
- fn: function (){
- var self=this;
- var o1,o2;
- function $Object(){return smalltalk.Object||(typeof Object=="undefined"?nil:Object)}
- return smalltalk.withContext(function($ctx1) {
- o1=_st($Object())._new();
- o2=_st($Object())._new();
- _st(self)._assert_(_st(_st(o1)._identityHash()).__eq_eq(_st(o1)._identityHash()));
- _st(self)._deny_(_st(_st(o1)._identityHash()).__eq_eq(_st(o2)._identityHash()));
- return self}, function($ctx1) {$ctx1.fill(self,"testidentityHash",{o1:o1,o2:o2},smalltalk.ObjectTest)})},
- messageSends: ["new", "assert:", "==", "identityHash", "deny:"]}),
- smalltalk.ObjectTest);
- smalltalk.addClass('PackageTest', smalltalk.TestCase, ['zorkPackage', 'grulPackage', 'backUpCommitPathJs', 'backUpCommitPathSt'], 'Kernel-Tests');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "setUp",
- fn: function (){
- var self=this;
- function $Package(){return smalltalk.Package||(typeof Package=="undefined"?nil:Package)}
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- self["@backUpCommitPathJs"]=_st($Package())._defaultCommitPathJs();
- self["@backUpCommitPathSt"]=_st($Package())._defaultCommitPathSt();
- _st($Package())._resetCommitPaths();
- self["@zorkPackage"]=_st(_st($Package())._new())._name_("Zork");
- $1=_st($Package())._new();
- _st($1)._name_("Grul");
- _st($1)._commitPathJs_("server/grul/js");
- _st($1)._commitPathSt_("grul/st");
- $2=_st($1)._yourself();
- self["@grulPackage"]=$2;
- return self}, function($ctx1) {$ctx1.fill(self,"setUp",{},smalltalk.PackageTest)})},
- messageSends: ["defaultCommitPathJs", "defaultCommitPathSt", "resetCommitPaths", "name:", "new", "commitPathJs:", "commitPathSt:", "yourself"]}),
- smalltalk.PackageTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "tearDown",
- fn: function (){
- var self=this;
- function $Package(){return smalltalk.Package||(typeof Package=="undefined"?nil:Package)}
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- $1=$Package();
- _st($1)._defaultCommitPathJs_(self["@backUpCommitPathJs"]);
- $2=_st($1)._defaultCommitPathSt_(self["@backUpCommitPathSt"]);
- return self}, function($ctx1) {$ctx1.fill(self,"tearDown",{},smalltalk.PackageTest)})},
- messageSends: ["defaultCommitPathJs:", "defaultCommitPathSt:"]}),
- smalltalk.PackageTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testGrulCommitPathJsShouldBeServerGrulJs",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(self["@grulPackage"])._commitPathJs(),"server/grul/js");
- return self}, function($ctx1) {$ctx1.fill(self,"testGrulCommitPathJsShouldBeServerGrulJs",{},smalltalk.PackageTest)})},
- messageSends: ["assert:equals:", "commitPathJs"]}),
- smalltalk.PackageTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testGrulCommitPathStShouldBeGrulSt",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(self["@grulPackage"])._commitPathSt(),"grul/st");
- return self}, function($ctx1) {$ctx1.fill(self,"testGrulCommitPathStShouldBeGrulSt",{},smalltalk.PackageTest)})},
- messageSends: ["assert:equals:", "commitPathSt"]}),
- smalltalk.PackageTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testZorkCommitPathJsShouldBeJs",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(self["@zorkPackage"])._commitPathJs(),"js");
- return self}, function($ctx1) {$ctx1.fill(self,"testZorkCommitPathJsShouldBeJs",{},smalltalk.PackageTest)})},
- messageSends: ["assert:equals:", "commitPathJs"]}),
- smalltalk.PackageTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testZorkCommitPathStShouldBeSt",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(self["@zorkPackage"])._commitPathSt(),"st");
- return self}, function($ctx1) {$ctx1.fill(self,"testZorkCommitPathStShouldBeSt",{},smalltalk.PackageTest)})},
- messageSends: ["assert:equals:", "commitPathSt"]}),
- smalltalk.PackageTest);
- smalltalk.addClass('PackageWithDefaultCommitPathChangedTest', smalltalk.PackageTest, [], 'Kernel-Tests');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "setUp",
- fn: function (){
- var self=this;
- function $Package(){return smalltalk.Package||(typeof Package=="undefined"?nil:Package)}
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- smalltalk.PackageTest.fn.prototype._setUp.apply(_st(self), []);
- $1=$Package();
- _st($1)._defaultCommitPathJs_("javascripts/");
- $2=_st($1)._defaultCommitPathSt_("smalltalk/");
- return self}, function($ctx1) {$ctx1.fill(self,"setUp",{},smalltalk.PackageWithDefaultCommitPathChangedTest)})},
- messageSends: ["setUp", "defaultCommitPathJs:", "defaultCommitPathSt:"]}),
- smalltalk.PackageWithDefaultCommitPathChangedTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testGrulCommitPathJsShouldBeServerGrulJs",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(self["@grulPackage"])._commitPathJs(),"server/grul/js");
- return self}, function($ctx1) {$ctx1.fill(self,"testGrulCommitPathJsShouldBeServerGrulJs",{},smalltalk.PackageWithDefaultCommitPathChangedTest)})},
- messageSends: ["assert:equals:", "commitPathJs"]}),
- smalltalk.PackageWithDefaultCommitPathChangedTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testGrulCommitPathStShouldBeGrulSt",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(self["@grulPackage"])._commitPathSt(),"grul/st");
- return self}, function($ctx1) {$ctx1.fill(self,"testGrulCommitPathStShouldBeGrulSt",{},smalltalk.PackageWithDefaultCommitPathChangedTest)})},
- messageSends: ["assert:equals:", "commitPathSt"]}),
- smalltalk.PackageWithDefaultCommitPathChangedTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testZorkCommitPathJsShouldBeJavascript",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(self["@zorkPackage"])._commitPathJs(),"javascripts/");
- return self}, function($ctx1) {$ctx1.fill(self,"testZorkCommitPathJsShouldBeJavascript",{},smalltalk.PackageWithDefaultCommitPathChangedTest)})},
- messageSends: ["assert:equals:", "commitPathJs"]}),
- smalltalk.PackageWithDefaultCommitPathChangedTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testZorkCommitPathStShouldBeSmalltalk",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(self["@zorkPackage"])._commitPathSt(),"smalltalk/");
- return self}, function($ctx1) {$ctx1.fill(self,"testZorkCommitPathStShouldBeSmalltalk",{},smalltalk.PackageWithDefaultCommitPathChangedTest)})},
- messageSends: ["assert:equals:", "commitPathSt"]}),
- smalltalk.PackageWithDefaultCommitPathChangedTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "shouldInheritSelectors",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return false;
- }, function($ctx1) {$ctx1.fill(self,"shouldInheritSelectors",{},smalltalk.PackageWithDefaultCommitPathChangedTest.klass)})},
- messageSends: []}),
- smalltalk.PackageWithDefaultCommitPathChangedTest.klass);
- smalltalk.addClass('PointTest', smalltalk.TestCase, [], 'Kernel-Tests');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testAccessing",
- fn: function (){
- var self=this;
- function $Point(){return smalltalk.Point||(typeof Point=="undefined"?nil:Point)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(_st($Point())._x_y_((3),(4)))._x(),(3));
- _st(self)._assert_equals_(_st(_st($Point())._x_y_((3),(4)))._y(),(4));
- _st(self)._assert_equals_(_st(_st(_st($Point())._new())._x_((3)))._x(),(3));
- _st(self)._assert_equals_(_st(_st(_st($Point())._new())._y_((4)))._y(),(4));
- return self}, function($ctx1) {$ctx1.fill(self,"testAccessing",{},smalltalk.PointTest)})},
- messageSends: ["assert:equals:", "x", "x:y:", "y", "x:", "new", "y:"]}),
- smalltalk.PointTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testArithmetic",
- fn: function (){
- var self=this;
- function $Point(){return smalltalk.Point||(typeof Point=="undefined"?nil:Point)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(_st((3)).__at((4))).__star(_st((3)).__at((4))),_st($Point())._x_y_((9),(16)));
- _st(self)._assert_equals_(_st(_st((3)).__at((4))).__plus(_st((3)).__at((4))),_st($Point())._x_y_((6),(8)));
- _st(self)._assert_equals_(_st(_st((3)).__at((4))).__minus(_st((3)).__at((4))),_st($Point())._x_y_((0),(0)));
- _st(self)._assert_equals_(_st(_st((6)).__at((8))).__slash(_st((3)).__at((4))),_st($Point())._x_y_((2),(2)));
- return self}, function($ctx1) {$ctx1.fill(self,"testArithmetic",{},smalltalk.PointTest)})},
- messageSends: ["assert:equals:", "*", "@", "x:y:", "+", "-", "/"]}),
- smalltalk.PointTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testAt",
- fn: function (){
- var self=this;
- function $Point(){return smalltalk.Point||(typeof Point=="undefined"?nil:Point)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st((3)).__at((4)),_st($Point())._x_y_((3),(4)));
- return self}, function($ctx1) {$ctx1.fill(self,"testAt",{},smalltalk.PointTest)})},
- messageSends: ["assert:equals:", "@", "x:y:"]}),
- smalltalk.PointTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testEgality",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_(_st(_st((3)).__at((4))).__eq(_st((3)).__at((4))));
- _st(self)._deny_(_st(_st((3)).__at((5))).__eq(_st((3)).__at((6))));
- return self}, function($ctx1) {$ctx1.fill(self,"testEgality",{},smalltalk.PointTest)})},
- messageSends: ["assert:", "=", "@", "deny:"]}),
- smalltalk.PointTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testTranslateBy",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(_st((3)).__at((3)))._translateBy_(_st((0)).__at((1))),_st((3)).__at((4)));
- _st(self)._assert_equals_(_st(_st((3)).__at((3)))._translateBy_(_st((0)).__at(_st((1))._negated())),_st((3)).__at((2)));
- _st(self)._assert_equals_(_st(_st((3)).__at((3)))._translateBy_(_st((2)).__at((3))),_st((5)).__at((6)));
- _st(self)._assert_equals_(_st(_st((3)).__at((3)))._translateBy_(_st(_st((3))._negated()).__at((0))),_st((0)).__at((3)));
- return self}, function($ctx1) {$ctx1.fill(self,"testTranslateBy",{},smalltalk.PointTest)})},
- messageSends: ["assert:equals:", "translateBy:", "@", "negated"]}),
- smalltalk.PointTest);
- smalltalk.addClass('RandomTest', smalltalk.TestCase, [], 'Kernel-Tests');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "textNext",
- fn: function (){
- var self=this;
- function $Random(){return smalltalk.Random||(typeof Random=="undefined"?nil:Random)}
- return smalltalk.withContext(function($ctx1) {
- _st((10000))._timesRepeat_((function(){
- var current,next;
- return smalltalk.withContext(function($ctx2) {
- next=_st(_st($Random())._new())._next();
- next;
- _st(self)._assert_(_st(next).__gt_eq((0)));
- _st(self)._assert_(_st(next).__lt((1)));
- _st(self)._deny_(_st(current).__eq(next));
- return _st(next).__eq(current);
- }, function($ctx2) {$ctx2.fillBlock({current:current,next:next},$ctx1)})}));
- return self}, function($ctx1) {$ctx1.fill(self,"textNext",{},smalltalk.RandomTest)})},
- messageSends: ["timesRepeat:", "next", "new", "assert:", ">=", "<", "deny:", "="]}),
- smalltalk.RandomTest);
- smalltalk.addClass('SetTest', smalltalk.TestCase, [], 'Kernel-Tests');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testAddRemove",
- fn: function (){
- var self=this;
- var set;
- function $Set(){return smalltalk.Set||(typeof Set=="undefined"?nil:Set)}
- return smalltalk.withContext(function($ctx1) {
- set=_st($Set())._new();
- _st(self)._assert_(_st(set)._isEmpty());
- _st(set)._add_((3));
- _st(self)._assert_(_st(set)._includes_((3)));
- _st(set)._add_((5));
- _st(self)._assert_(_st(set)._includes_((5)));
- _st(set)._remove_((3));
- _st(self)._deny_(_st(set)._includes_((3)));
- return self}, function($ctx1) {$ctx1.fill(self,"testAddRemove",{set:set},smalltalk.SetTest)})},
- messageSends: ["new", "assert:", "isEmpty", "add:", "includes:", "remove:", "deny:"]}),
- smalltalk.SetTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testAt",
- fn: function (){
- var self=this;
- function $Set(){return smalltalk.Set||(typeof Set=="undefined"?nil:Set)}
- function $Error(){return smalltalk.Error||(typeof Error=="undefined"?nil:Error)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._should_raise_((function(){
- return smalltalk.withContext(function($ctx2) {
- return _st(_st($Set())._new())._at_put_((1),(2));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}),$Error());
- return self}, function($ctx1) {$ctx1.fill(self,"testAt",{},smalltalk.SetTest)})},
- messageSends: ["should:raise:", "at:put:", "new"]}),
- smalltalk.SetTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testCollect",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(_st([(5), (6), (8)])._asSet())._collect_((function(x){
- return smalltalk.withContext(function($ctx2) {
- return _st(x).__backslash_backslash((3));
- }, function($ctx2) {$ctx2.fillBlock({x:x},$ctx1)})})),_st([(0), (2)])._asSet());
- return self}, function($ctx1) {$ctx1.fill(self,"testCollect",{},smalltalk.SetTest)})},
- messageSends: ["assert:equals:", "collect:", "\x5c\x5c", "asSet"]}),
- smalltalk.SetTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testComparing",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st([(0), (2)])._asSet(),_st([(0), (2)])._asSet());
- _st(self)._assert_equals_(_st([(2), (0)])._asSet(),_st([(0), (2)])._asSet());
- _st(self)._deny_(_st(_st([(0), (2), (3)])._asSet()).__eq(_st([(0), (2)])._asSet()));
- _st(self)._deny_(_st(_st([(1), (2)])._asSet()).__eq(_st([(0), (2)])._asSet()));
- return self}, function($ctx1) {$ctx1.fill(self,"testComparing",{},smalltalk.SetTest)})},
- messageSends: ["assert:equals:", "asSet", "deny:", "="]}),
- smalltalk.SetTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testPrintString",
- fn: function (){
- var self=this;
- var set;
- function $Set(){return smalltalk.Set||(typeof Set=="undefined"?nil:Set)}
- return smalltalk.withContext(function($ctx1) {
- var $1,$2,$3,$4;
- set=_st($Set())._new();
- _st(self)._assert_equals_(_st(set)._printString(),"a Set ()");
- $1=set;
- _st($1)._add_((1));
- $2=_st($1)._add_((3));
- _st(self)._assert_equals_(_st(set)._printString(),"a Set (1 3)");
- _st(set)._add_("foo");
- _st(self)._assert_equals_(_st(set)._printString(),"a Set (1 3 'foo')");
- $3=set;
- _st($3)._remove_((1));
- $4=_st($3)._remove_((3));
- _st(self)._assert_equals_(_st(set)._printString(),"a Set ('foo')");
- _st(set)._add_((3));
- _st(self)._assert_equals_(_st(set)._printString(),"a Set ('foo' 3)");
- _st(set)._add_((3));
- _st(self)._assert_equals_(_st(set)._printString(),"a Set ('foo' 3)");
- return self}, function($ctx1) {$ctx1.fill(self,"testPrintString",{set:set},smalltalk.SetTest)})},
- messageSends: ["new", "assert:equals:", "printString", "add:", "remove:"]}),
- smalltalk.SetTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testSize",
- fn: function (){
- var self=this;
- function $Set(){return smalltalk.Set||(typeof Set=="undefined"?nil:Set)}
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(_st($Set())._new())._size(),(0));
- _st(self)._assert_equals_(_st(_st($Set())._withAll_([(1), (2), (3), (4)]))._size(),(4));
- _st(self)._assert_equals_(_st(_st($Set())._withAll_([(1), (1), (1), (1)]))._size(),(1));
- return self}, function($ctx1) {$ctx1.fill(self,"testSize",{},smalltalk.SetTest)})},
- messageSends: ["assert:equals:", "size", "new", "withAll:"]}),
- smalltalk.SetTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testUnicity",
- fn: function (){
- var self=this;
- var set;
- function $Set(){return smalltalk.Set||(typeof Set=="undefined"?nil:Set)}
- return smalltalk.withContext(function($ctx1) {
- set=_st($Set())._new();
- _st(set)._add_((21));
- _st(set)._add_("hello");
- _st(set)._add_((21));
- _st(self)._assert_equals_(_st(set)._size(),(2));
- _st(set)._add_("hello");
- _st(self)._assert_equals_(_st(set)._size(),(2));
- _st(self)._assert_equals_(_st(set)._asArray(),[(21), "hello"]);
- return self}, function($ctx1) {$ctx1.fill(self,"testUnicity",{set:set},smalltalk.SetTest)})},
- messageSends: ["new", "add:", "assert:equals:", "size", "asArray"]}),
- smalltalk.SetTest);
- smalltalk.addClass('StreamTest', smalltalk.TestCase, [], 'Kernel-Tests');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "collectionClass",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(_st(self)._class())._collectionClass();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.StreamTest)})},
- messageSends: ["collectionClass", "class"]}),
- smalltalk.StreamTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "newCollection",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(_st(self)._collectionClass())._new();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"newCollection",{},smalltalk.StreamTest)})},
- messageSends: ["new", "collectionClass"]}),
- smalltalk.StreamTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "newStream",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(_st(_st(self)._collectionClass())._new())._stream();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"newStream",{},smalltalk.StreamTest)})},
- messageSends: ["stream", "new", "collectionClass"]}),
- smalltalk.StreamTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testAtStartAtEnd",
- fn: function (){
- var self=this;
- var stream;
- return smalltalk.withContext(function($ctx1) {
- stream=_st(self)._newStream();
- _st(self)._assert_(_st(stream)._atStart());
- _st(self)._assert_(_st(stream)._atEnd());
- _st(stream)._nextPutAll_(_st(self)._newCollection());
- _st(self)._assert_(_st(stream)._atEnd());
- _st(self)._deny_(_st(stream)._atStart());
- _st(stream)._position_((1));
- _st(self)._deny_(_st(stream)._atEnd());
- _st(self)._deny_(_st(stream)._atStart());
- return self}, function($ctx1) {$ctx1.fill(self,"testAtStartAtEnd",{stream:stream},smalltalk.StreamTest)})},
- messageSends: ["newStream", "assert:", "atStart", "atEnd", "nextPutAll:", "newCollection", "deny:", "position:"]}),
- smalltalk.StreamTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testContents",
- fn: function (){
- var self=this;
- var stream;
- return smalltalk.withContext(function($ctx1) {
- stream=_st(self)._newStream();
- _st(stream)._nextPutAll_(_st(self)._newCollection());
- _st(self)._assert_equals_(_st(stream)._contents(),_st(self)._newCollection());
- return self}, function($ctx1) {$ctx1.fill(self,"testContents",{stream:stream},smalltalk.StreamTest)})},
- messageSends: ["newStream", "nextPutAll:", "newCollection", "assert:equals:", "contents"]}),
- smalltalk.StreamTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testIsEmpty",
- fn: function (){
- var self=this;
- var stream;
- return smalltalk.withContext(function($ctx1) {
- stream=_st(self)._newStream();
- _st(self)._assert_(_st(stream)._isEmpty());
- _st(stream)._nextPutAll_(_st(self)._newCollection());
- _st(self)._deny_(_st(stream)._isEmpty());
- return self}, function($ctx1) {$ctx1.fill(self,"testIsEmpty",{stream:stream},smalltalk.StreamTest)})},
- messageSends: ["newStream", "assert:", "isEmpty", "nextPutAll:", "newCollection", "deny:"]}),
- smalltalk.StreamTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testPosition",
- fn: function (){
- var self=this;
- var collection,stream;
- return smalltalk.withContext(function($ctx1) {
- collection=_st(self)._newCollection();
- stream=_st(self)._newStream();
- _st(stream)._nextPutAll_(collection);
- _st(self)._assert_equals_(_st(stream)._position(),_st(collection)._size());
- _st(stream)._position_((0));
- _st(self)._assert_equals_(_st(stream)._position(),(0));
- _st(stream)._next();
- _st(self)._assert_equals_(_st(stream)._position(),(1));
- _st(stream)._next();
- _st(self)._assert_equals_(_st(stream)._position(),(2));
- return self}, function($ctx1) {$ctx1.fill(self,"testPosition",{collection:collection,stream:stream},smalltalk.StreamTest)})},
- messageSends: ["newCollection", "newStream", "nextPutAll:", "assert:equals:", "position", "size", "position:", "next"]}),
- smalltalk.StreamTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testReading",
- fn: function (){
- var self=this;
- var stream,collection;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2;
- collection=_st(self)._newCollection();
- stream=_st(self)._newStream();
- $1=stream;
- _st($1)._nextPutAll_(collection);
- $2=_st($1)._position_((0));
- _st(collection)._do_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(self)._assert_equals_(_st(stream)._next(),each);
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
- _st(self)._assert_(_st(_st(stream)._next())._isNil());
- return self}, function($ctx1) {$ctx1.fill(self,"testReading",{stream:stream,collection:collection},smalltalk.StreamTest)})},
- messageSends: ["newCollection", "newStream", "nextPutAll:", "position:", "do:", "assert:equals:", "next", "assert:", "isNil"]}),
- smalltalk.StreamTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testStreamContents",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return self}, function($ctx1) {$ctx1.fill(self,"testStreamContents",{},smalltalk.StreamTest)})},
- messageSends: []}),
- smalltalk.StreamTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testWrite",
- fn: function (){
- var self=this;
- var stream,collection;
- return smalltalk.withContext(function($ctx1) {
- collection=_st(self)._newCollection();
- stream=_st(self)._newStream();
- _st(collection)._do_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(stream).__lt_lt(each);
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
- _st(self)._assert_equals_(_st(stream)._contents(),collection);
- return self}, function($ctx1) {$ctx1.fill(self,"testWrite",{stream:stream,collection:collection},smalltalk.StreamTest)})},
- messageSends: ["newCollection", "newStream", "do:", "<<", "assert:equals:", "contents"]}),
- smalltalk.StreamTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testWriting",
- fn: function (){
- var self=this;
- var stream,collection;
- return smalltalk.withContext(function($ctx1) {
- collection=_st(self)._newCollection();
- stream=_st(self)._newStream();
- _st(collection)._do_((function(each){
- return smalltalk.withContext(function($ctx2) {
- return _st(stream)._nextPut_(each);
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
- _st(self)._assert_equals_(_st(stream)._contents(),collection);
- stream=_st(self)._newStream();
- _st(stream)._nextPutAll_(collection);
- _st(self)._assert_equals_(_st(stream)._contents(),collection);
- return self}, function($ctx1) {$ctx1.fill(self,"testWriting",{stream:stream,collection:collection},smalltalk.StreamTest)})},
- messageSends: ["newCollection", "newStream", "do:", "nextPut:", "assert:equals:", "contents", "nextPutAll:"]}),
- smalltalk.StreamTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "collectionClass",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return nil;
- }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.StreamTest.klass)})},
- messageSends: []}),
- smalltalk.StreamTest.klass);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "isAbstract",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=_st(_st(self)._collectionClass())._isNil();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"isAbstract",{},smalltalk.StreamTest.klass)})},
- messageSends: ["isNil", "collectionClass"]}),
- smalltalk.StreamTest.klass);
- smalltalk.addClass('ArrayStreamTest', smalltalk.StreamTest, [], 'Kernel-Tests');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "newCollection",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=[true,(1),_st((3)).__at((4)),"foo"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"newCollection",{},smalltalk.ArrayStreamTest)})},
- messageSends: ["@"]}),
- smalltalk.ArrayStreamTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "collectionClass",
- fn: function (){
- var self=this;
- function $Array(){return smalltalk.Array||(typeof Array=="undefined"?nil:Array)}
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=$Array();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.ArrayStreamTest.klass)})},
- messageSends: []}),
- smalltalk.ArrayStreamTest.klass);
- smalltalk.addClass('StringStreamTest', smalltalk.StreamTest, [], 'Kernel-Tests');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "newCollection",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- return "hello world";
- }, function($ctx1) {$ctx1.fill(self,"newCollection",{},smalltalk.StringStreamTest)})},
- messageSends: []}),
- smalltalk.StringStreamTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "collectionClass",
- fn: function (){
- var self=this;
- function $String(){return smalltalk.String||(typeof String=="undefined"?nil:String)}
- return smalltalk.withContext(function($ctx1) {
- var $1;
- $1=$String();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"collectionClass",{},smalltalk.StringStreamTest.klass)})},
- messageSends: []}),
- smalltalk.StringStreamTest.klass);
- smalltalk.addClass('UndefinedTest', smalltalk.TestCase, [], 'Kernel-Tests');
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testCopying",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_equals_(_st(nil)._copy(),nil);
- return self}, function($ctx1) {$ctx1.fill(self,"testCopying",{},smalltalk.UndefinedTest)})},
- messageSends: ["assert:equals:", "copy"]}),
- smalltalk.UndefinedTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testDeepCopy",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_(_st(_st(nil)._deepCopy()).__eq(nil));
- return self}, function($ctx1) {$ctx1.fill(self,"testDeepCopy",{},smalltalk.UndefinedTest)})},
- messageSends: ["assert:", "=", "deepCopy"]}),
- smalltalk.UndefinedTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testIfNil",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- var $1,$2,$3,$5,$4,$6,$7,$8,$10,$9;
- $1=self;
- if(($receiver = nil) == nil || $receiver == undefined){
- $2=true;
- } else {
- $2=nil;
- };
- _st($1)._assert_equals_($2,true);
- $3=self;
- if(($receiver = nil) == nil || $receiver == undefined){
- $5=nil;
- } else {
- $5=true;
- };
- $4=_st($5).__eq(true);
- _st($3)._deny_($4);
- $6=self;
- if(($receiver = nil) == nil || $receiver == undefined){
- $7=true;
- } else {
- $7=false;
- };
- _st($6)._assert_equals_($7,true);
- $8=self;
- if(($receiver = nil) == nil || $receiver == undefined){
- $10=false;
- } else {
- $10=true;
- };
- $9=_st($10).__eq(true);
- _st($8)._deny_($9);
- return self}, function($ctx1) {$ctx1.fill(self,"testIfNil",{},smalltalk.UndefinedTest)})},
- messageSends: ["assert:equals:", "ifNil:", "deny:", "=", "ifNotNil:", "ifNil:ifNotNil:", "ifNotNil:ifNil:"]}),
- smalltalk.UndefinedTest);
- smalltalk.addMethod(
- smalltalk.method({
- selector: "testIsNil",
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
- _st(self)._assert_(_st(nil)._isNil());
- _st(self)._deny_(_st(nil)._notNil());
- return self}, function($ctx1) {$ctx1.fill(self,"testIsNil",{},smalltalk.UndefinedTest)})},
- messageSends: ["assert:", "isNil", "deny:", "notNil"]}),
- smalltalk.UndefinedTest);
|