1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180 |
- smalltalk.addPackage('SUnit');
- smalltalk.addClass('ResultAnnouncement', smalltalk.Object, ['result'], 'SUnit');
- smalltalk.addMethod(
- "_result",
- smalltalk.method({
- selector: "result",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@result"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"result",{},smalltalk.ResultAnnouncement)})},
- args: [],
- source: "result\x0a\x09^result",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.ResultAnnouncement);
- smalltalk.addMethod(
- "_result_",
- smalltalk.method({
- selector: "result:",
- category: 'accessing',
- fn: function (aTestResult){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@result"]=aTestResult;
- return self}, function($ctx1) {$ctx1.fill(self,"result:",{aTestResult:aTestResult},smalltalk.ResultAnnouncement)})},
- args: ["aTestResult"],
- source: "result: aTestResult\x0a\x09result := aTestResult",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.ResultAnnouncement);
- smalltalk.addClass('TestCase', smalltalk.Object, ['testSelector', 'asyncTimeout', 'context'], 'SUnit');
- smalltalk.TestCase.comment="A TestCase is an implementation of the command pattern to run a test.\x0a\x0a`TestCase` instances are created with the class method `#selector:`,\x0apassing the symbol that names the method to be executed when the test case runs.\x0a\x0aWhen you discover a new fixture, subclass `TestCase` and create a `#test...` method for the first test.\x0aAs that method develops and more `#test...` methods are added, you will find yourself refactoring temps\x0ainto instance variables for the objects in the fixture and overriding `#setUp` to initialize these variables.\x0aAs required, override `#tearDown` to nil references, release objects and deallocate."
- smalltalk.addMethod(
- "_assert_",
- smalltalk.method({
- selector: "assert:",
- category: 'testing',
- fn: function (aBoolean){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
_st(self)._assert_description_(aBoolean,"Assertion failed");
- return self}, function($ctx1) {$ctx1.fill(self,"assert:",{aBoolean:aBoolean},smalltalk.TestCase)})},
- args: ["aBoolean"],
- source: "assert: aBoolean\x0a\x09self assert: aBoolean description: 'Assertion failed'",
- messageSends: ["assert:description:"],
- referencedClasses: []
- }),
- smalltalk.TestCase);
- smalltalk.addMethod(
- "_assert_description_",
- smalltalk.method({
- selector: "assert:description:",
- category: 'testing',
- fn: function (aBoolean,aString){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=aBoolean;
- if(! smalltalk.assert($1)){
- _st(self)._signalFailure_(aString);
- };
- return self}, function($ctx1) {$ctx1.fill(self,"assert:description:",{aBoolean:aBoolean,aString:aString},smalltalk.TestCase)})},
- args: ["aBoolean", "aString"],
- source: "assert: aBoolean description: aString\x0a\x09aBoolean ifFalse: [self signalFailure: aString]",
- messageSends: ["ifFalse:", "signalFailure:"],
- referencedClasses: []
- }),
- smalltalk.TestCase);
- smalltalk.addMethod(
- "_assert_equals_",
- smalltalk.method({
- selector: "assert:equals:",
- category: 'testing',
- fn: function (actual,expected){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st(self)._assert_description_(_st(actual).__eq(expected),_st(_st(_st("Expected: ").__comma(_st(expected)._asString())).__comma(" but was: ")).__comma(_st(actual)._asString()));
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"assert:equals:",{actual:actual,expected:expected},smalltalk.TestCase)})},
- args: ["actual", "expected"],
- source: "assert: actual equals: expected\x0a\x09^ self assert: (actual = expected) description: 'Expected: ', expected asString, ' but was: ', actual asString",
- messageSends: ["assert:description:", "=", ",", "asString"],
- referencedClasses: []
- }),
- smalltalk.TestCase);
- smalltalk.addMethod(
- "_async_",
- smalltalk.method({
- selector: "async:",
- category: 'async',
- fn: function (aBlock){
- var self=this;
- var c;
- return smalltalk.withContext(function($ctx1) {
var $2,$1;
- _st(self)._errorIfNotAsync_("#async");
- c=self["@context"];
- $1=(function(){
- return smalltalk.withContext(function($ctx2) {
$2=_st(self)._isAsync();
- if(smalltalk.assert($2)){
- return _st(c)._execute_(aBlock);
- };
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})});
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"async:",{aBlock:aBlock,c:c},smalltalk.TestCase)})},
- args: ["aBlock"],
- source: "async: aBlock\x0a\x09| c |\x0a\x09self errorIfNotAsync: '#async'.\x0a\x09c := context.\x0a\x09^ [ self isAsync ifTrue: [ c execute: aBlock ] ]",
- messageSends: ["errorIfNotAsync:", "ifTrue:", "execute:", "isAsync"],
- referencedClasses: []
- }),
- smalltalk.TestCase);
- smalltalk.addMethod(
- "_context_",
- smalltalk.method({
- selector: "context:",
- category: 'accessing',
- fn: function (aRunningTestContext){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@context"]=aRunningTestContext;
- return self}, function($ctx1) {$ctx1.fill(self,"context:",{aRunningTestContext:aRunningTestContext},smalltalk.TestCase)})},
- args: ["aRunningTestContext"],
- source: "context: aRunningTestContext\x0a\x09context := aRunningTestContext",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.TestCase);
- smalltalk.addMethod(
- "_deny_",
- smalltalk.method({
- selector: "deny:",
- category: 'testing',
- fn: function (aBoolean){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
_st(self)._assert_(_st(aBoolean)._not());
- return self}, function($ctx1) {$ctx1.fill(self,"deny:",{aBoolean:aBoolean},smalltalk.TestCase)})},
- args: ["aBoolean"],
- source: "deny: aBoolean\x0a\x09self assert: aBoolean not",
- messageSends: ["assert:", "not"],
- referencedClasses: []
- }),
- smalltalk.TestCase);
- smalltalk.addMethod(
- "_errorIfNotAsync_",
- smalltalk.method({
- selector: "errorIfNotAsync:",
- category: 'error handling',
- fn: function (aString){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st(self)._isAsync();
- if(! smalltalk.assert($1)){
- _st(self)._error_(_st(aString).__comma(" used without prior #timeout:"));
- };
- return self}, function($ctx1) {$ctx1.fill(self,"errorIfNotAsync:",{aString:aString},smalltalk.TestCase)})},
- args: ["aString"],
- source: "errorIfNotAsync: aString\x0a\x09self isAsync ifFalse: [\x0a\x09\x09self error: aString, ' used without prior #timeout:' ]",
- messageSends: ["ifFalse:", "error:", ",", "isAsync"],
- referencedClasses: []
- }),
- smalltalk.TestCase);
- smalltalk.addMethod(
- "_finished",
- smalltalk.method({
- selector: "finished",
- category: 'async',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
_st(self)._errorIfNotAsync_("#finished");
- self["@asyncTimeout"]=nil;
- return self}, function($ctx1) {$ctx1.fill(self,"finished",{},smalltalk.TestCase)})},
- args: [],
- source: "finished\x0a\x09self errorIfNotAsync: '#finished'.\x0a\x09asyncTimeout := nil",
- messageSends: ["errorIfNotAsync:"],
- referencedClasses: []
- }),
- smalltalk.TestCase);
- smalltalk.addMethod(
- "_isAsync",
- smalltalk.method({
- selector: "isAsync",
- category: 'testing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st(self["@asyncTimeout"])._notNil();
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"isAsync",{},smalltalk.TestCase)})},
- args: [],
- source: "isAsync\x0a\x09^asyncTimeout notNil",
- messageSends: ["notNil"],
- referencedClasses: []
- }),
- smalltalk.TestCase);
- smalltalk.addMethod(
- "_performTest",
- smalltalk.method({
- selector: "performTest",
- category: 'running',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@asyncTimeout"]=nil;
- _st(self)._perform_(_st(self)._selector());
- return self}, function($ctx1) {$ctx1.fill(self,"performTest",{},smalltalk.TestCase)})},
- args: [],
- source: "performTest\x0a\x09asyncTimeout := nil.\x0a\x09self perform: self selector",
- messageSends: ["perform:", "selector"],
- referencedClasses: []
- }),
- smalltalk.TestCase);
- smalltalk.addMethod(
- "_runCase",
- smalltalk.method({
- selector: "runCase",
- category: 'running',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
_st(_st((smalltalk.TestContext || TestContext))._testCase_(self))._start();
- return self}, function($ctx1) {$ctx1.fill(self,"runCase",{},smalltalk.TestCase)})},
- args: [],
- source: "runCase\x0a\x09\x22Runs a test case in isolated context, leaking all errors.\x22\x0a\x0a\x09(TestContext testCase: self) start",
- messageSends: ["start", "testCase:"],
- referencedClasses: ["TestContext"]
- }),
- smalltalk.TestCase);
- smalltalk.addMethod(
- "_selector",
- smalltalk.method({
- selector: "selector",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@testSelector"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"selector",{},smalltalk.TestCase)})},
- args: [],
- source: "selector\x0a\x09^testSelector",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.TestCase);
- smalltalk.addMethod(
- "_setTestSelector_",
- smalltalk.method({
- selector: "setTestSelector:",
- category: 'accessing',
- fn: function (aSelector){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@testSelector"]=aSelector;
- return self}, function($ctx1) {$ctx1.fill(self,"setTestSelector:",{aSelector:aSelector},smalltalk.TestCase)})},
- args: ["aSelector"],
- source: "setTestSelector: aSelector\x0a\x09testSelector := aSelector",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.TestCase);
- smalltalk.addMethod(
- "_setUp",
- smalltalk.method({
- selector: "setUp",
- category: 'running',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
return self}, function($ctx1) {$ctx1.fill(self,"setUp",{},smalltalk.TestCase)})},
- args: [],
- source: "setUp",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.TestCase);
- smalltalk.addMethod(
- "_should_",
- smalltalk.method({
- selector: "should:",
- category: 'testing',
- fn: function (aBlock){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
_st(self)._assert_(_st(aBlock)._value());
- return self}, function($ctx1) {$ctx1.fill(self,"should:",{aBlock:aBlock},smalltalk.TestCase)})},
- args: ["aBlock"],
- source: "should: aBlock\x0a\x09self assert: aBlock value",
- messageSends: ["assert:", "value"],
- referencedClasses: []
- }),
- smalltalk.TestCase);
- smalltalk.addMethod(
- "_should_raise_",
- smalltalk.method({
- selector: "should:raise:",
- category: 'testing',
- fn: function (aBlock,anExceptionClass){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
_st(self)._assert_(_st((function(){
- return smalltalk.withContext(function($ctx2) {
_st(aBlock)._value();
- return false;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._on_do_(anExceptionClass,(function(ex){
- return smalltalk.withContext(function($ctx2) {
return true;
- }, function($ctx2) {$ctx2.fillBlock({ex:ex},$ctx1)})})));
- return self}, function($ctx1) {$ctx1.fill(self,"should:raise:",{aBlock:aBlock,anExceptionClass:anExceptionClass},smalltalk.TestCase)})},
- args: ["aBlock", "anExceptionClass"],
- source: "should: aBlock raise: anExceptionClass\x0a\x09self assert: ([aBlock value. false]\x0a\x09\x09on: anExceptionClass\x0a\x09\x09do: [:ex | true])",
- messageSends: ["assert:", "on:do:", "value"],
- referencedClasses: []
- }),
- smalltalk.TestCase);
- smalltalk.addMethod(
- "_shouldnt_raise_",
- smalltalk.method({
- selector: "shouldnt:raise:",
- category: 'testing',
- fn: function (aBlock,anExceptionClass){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
_st(self)._assert_(_st((function(){
- return smalltalk.withContext(function($ctx2) {
_st(aBlock)._value();
- return true;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._on_do_(anExceptionClass,(function(ex){
- return smalltalk.withContext(function($ctx2) {
return false;
- }, function($ctx2) {$ctx2.fillBlock({ex:ex},$ctx1)})})));
- return self}, function($ctx1) {$ctx1.fill(self,"shouldnt:raise:",{aBlock:aBlock,anExceptionClass:anExceptionClass},smalltalk.TestCase)})},
- args: ["aBlock", "anExceptionClass"],
- source: "shouldnt: aBlock raise: anExceptionClass\x0a\x09self assert: ([aBlock value. true]\x0a\x09\x09on: anExceptionClass\x0a\x09\x09do: [:ex | false])",
- messageSends: ["assert:", "on:do:", "value"],
- referencedClasses: []
- }),
- smalltalk.TestCase);
- smalltalk.addMethod(
- "_signalFailure_",
- smalltalk.method({
- selector: "signalFailure:",
- category: 'private',
- fn: function (aString){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1,$2;
- $1=_st((smalltalk.TestFailure || TestFailure))._new();
- _st($1)._messageText_(aString);
- $2=_st($1)._signal();
- return self}, function($ctx1) {$ctx1.fill(self,"signalFailure:",{aString:aString},smalltalk.TestCase)})},
- args: ["aString"],
- source: "signalFailure: aString\x0a\x09TestFailure new\x0a\x09\x09messageText: aString;\x0a\x09\x09signal",
- messageSends: ["messageText:", "new", "signal"],
- referencedClasses: ["TestFailure"]
- }),
- smalltalk.TestCase);
- smalltalk.addMethod(
- "_tearDown",
- smalltalk.method({
- selector: "tearDown",
- category: 'running',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
return self}, function($ctx1) {$ctx1.fill(self,"tearDown",{},smalltalk.TestCase)})},
- args: [],
- source: "tearDown",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.TestCase);
- smalltalk.addMethod(
- "_timeout_",
- smalltalk.method({
- selector: "timeout:",
- category: 'async',
- fn: function (aNumber){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@asyncTimeout"];
- if(($receiver = $1) == nil || $receiver == undefined){
- $1;
- } else {
- _st(self["@asyncTimeout"])._clearTimeout();
- };
- self["@asyncTimeout"]=(0);
- self["@asyncTimeout"]=_st(_st(self)._async_((function(){
- return smalltalk.withContext(function($ctx2) {
return _st(self)._assert_description_(false,"SUnit grace time exhausted");
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})})))._valueWithTimeout_(aNumber);
- return self}, function($ctx1) {$ctx1.fill(self,"timeout:",{aNumber:aNumber},smalltalk.TestCase)})},
- args: ["aNumber"],
- source: "timeout: aNumber\x0a\x09\x22Set a grace time timeout in milliseconds to run the test asynchronously\x22\x0a\x09\x0a\x09asyncTimeout ifNotNil: [ asyncTimeout clearTimeout ].\x0a\x09\x0a\x09\x22to allow #async: message send without throwing an error\x22\x0a\x09asyncTimeout := 0.\x0a\x09\x0a\x09asyncTimeout := (self async: [\x0a\x09\x09self assert: false description: 'SUnit grace time exhausted' ])\x0a\x09\x09\x09valueWithTimeout: aNumber",
- messageSends: ["ifNotNil:", "clearTimeout", "valueWithTimeout:", "async:", "assert:description:"],
- referencedClasses: []
- }),
- smalltalk.TestCase);
- smalltalk.addMethod(
- "_allTestSelectors",
- smalltalk.method({
- selector: "allTestSelectors",
- category: 'accessing',
- fn: function (){
- var self=this;
- var selectors;
- return smalltalk.withContext(function($ctx1) {
var $1,$2;
- selectors=_st(self)._testSelectors();
- $1=_st(self)._shouldInheritSelectors();
- if(smalltalk.assert($1)){
- _st(selectors)._addAll_(_st(_st(self)._superclass())._allTestSelectors());
- };
- $2=selectors;
- return $2;
- }, function($ctx1) {$ctx1.fill(self,"allTestSelectors",{selectors:selectors},smalltalk.TestCase.klass)})},
- args: [],
- source: "allTestSelectors\x0a\x09| selectors |\x0a\x09selectors := self testSelectors.\x0a\x09self shouldInheritSelectors ifTrue: [\x0a\x09\x09selectors addAll: self superclass allTestSelectors].\x0a\x09^selectors",
- messageSends: ["testSelectors", "ifTrue:", "addAll:", "allTestSelectors", "superclass", "shouldInheritSelectors"],
- referencedClasses: []
- }),
- smalltalk.TestCase.klass);
- smalltalk.addMethod(
- "_buildSuite",
- smalltalk.method({
- selector: "buildSuite",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st(_st(self)._allTestSelectors())._collect_((function(each){
- return smalltalk.withContext(function($ctx2) {
return _st(self)._selector_(each);
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"buildSuite",{},smalltalk.TestCase.klass)})},
- args: [],
- source: "buildSuite\x0a\x09^self allTestSelectors collect: [:each | self selector: each]",
- messageSends: ["collect:", "selector:", "allTestSelectors"],
- referencedClasses: []
- }),
- smalltalk.TestCase.klass);
- smalltalk.addMethod(
- "_isAbstract",
- smalltalk.method({
- selector: "isAbstract",
- category: 'testing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st(_st(self)._name()).__eq("TestCase");
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"isAbstract",{},smalltalk.TestCase.klass)})},
- args: [],
- source: "isAbstract\x0a\x09^ self name = 'TestCase'",
- messageSends: ["=", "name"],
- referencedClasses: []
- }),
- smalltalk.TestCase.klass);
- smalltalk.addMethod(
- "_lookupHierarchyRoot",
- smalltalk.method({
- selector: "lookupHierarchyRoot",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=(smalltalk.TestCase || TestCase);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"lookupHierarchyRoot",{},smalltalk.TestCase.klass)})},
- args: [],
- source: "lookupHierarchyRoot\x0a\x09^TestCase",
- messageSends: [],
- referencedClasses: ["TestCase"]
- }),
- smalltalk.TestCase.klass);
- smalltalk.addMethod(
- "_selector_",
- smalltalk.method({
- selector: "selector:",
- category: 'accessing',
- fn: function (aSelector){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $2,$3,$1;
- $2=_st(self)._new();
- _st($2)._setTestSelector_(aSelector);
- $3=_st($2)._yourself();
- $1=$3;
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"selector:",{aSelector:aSelector},smalltalk.TestCase.klass)})},
- args: ["aSelector"],
- source: "selector: aSelector\x0a\x09^self new\x0a\x09\x09setTestSelector: aSelector;\x0a\x09\x09yourself",
- messageSends: ["setTestSelector:", "new", "yourself"],
- referencedClasses: []
- }),
- smalltalk.TestCase.klass);
- smalltalk.addMethod(
- "_shouldInheritSelectors",
- smalltalk.method({
- selector: "shouldInheritSelectors",
- category: 'testing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st(self).__tild_eq(_st(self)._lookupHierarchyRoot());
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"shouldInheritSelectors",{},smalltalk.TestCase.klass)})},
- args: [],
- source: "shouldInheritSelectors\x0a\x09^self ~= self lookupHierarchyRoot",
- messageSends: ["~=", "lookupHierarchyRoot"],
- referencedClasses: []
- }),
- smalltalk.TestCase.klass);
- smalltalk.addMethod(
- "_testSelectors",
- smalltalk.method({
- selector: "testSelectors",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st(_st(_st(self)._methodDictionary())._keys())._select_((function(each){
- return smalltalk.withContext(function($ctx2) {
return _st(each)._match_("^test");
- }, function($ctx2) {$ctx2.fillBlock({each:each},$ctx1)})}));
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"testSelectors",{},smalltalk.TestCase.klass)})},
- args: [],
- source: "testSelectors\x0a\x09^self methodDictionary keys select: [:each | each match: '^test']",
- messageSends: ["select:", "match:", "keys", "methodDictionary"],
- referencedClasses: []
- }),
- smalltalk.TestCase.klass);
- smalltalk.addClass('TestContext', smalltalk.Object, ['testCase'], 'SUnit');
- smalltalk.TestContext.comment="TestContext governs running a particular test case.\x0a\x0aIt's main added value is `#execute:` method which runs a block\x0aas a part of test case (restores context, nilling it afterwards,\x0acleaning/calling tearDown as appropriate for sync/async scenario)."
- smalltalk.addMethod(
- "_execute_",
- smalltalk.method({
- selector: "execute:",
- category: 'running',
- fn: function (aBlock){
- var self=this;
- var failed;
- return smalltalk.withContext(function($ctx1) {
var $1,$2;
- _st(self["@testCase"])._context_(self);
- _st((function(){
- return smalltalk.withContext(function($ctx2) {
failed=true;
- failed;
- _st(aBlock)._value();
- failed=false;
- return failed;
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._ensure_((function(){
- return smalltalk.withContext(function($ctx2) {
_st(self["@testCase"])._context_(nil);
- $1=_st(failed)._and_((function(){
- return smalltalk.withContext(function($ctx3) {
return _st(self["@testCase"])._isAsync();
- }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));
- if(smalltalk.assert($1)){
- _st(self["@testCase"])._finished();
- };
- $2=_st(self["@testCase"])._isAsync();
- if(! smalltalk.assert($2)){
- return _st(self["@testCase"])._tearDown();
- };
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
- return self}, function($ctx1) {$ctx1.fill(self,"execute:",{aBlock:aBlock,failed:failed},smalltalk.TestContext)})},
- args: ["aBlock"],
- source: "execute: aBlock\x0a\x09| failed |\x0a\x09\x0a\x09testCase context: self.\x0a\x09[\x0a\x09\x09failed := true.\x0a\x09\x09aBlock value.\x0a\x09\x09failed := false\x0a\x09]\x0a\x09\x09ensure: [\x0a\x09\x09\x09testCase context: nil.\x0a\x09\x09\x09\x0a\x09\x09\x09(failed and: [ testCase isAsync ]) ifTrue: [\x0a\x09\x09\x09\x09testCase finished ].\x0a\x09\x09\x09testCase isAsync ifFalse: [\x0a\x09\x09\x09\x09testCase tearDown ] ]",
- messageSends: ["context:", "ensure:", "ifTrue:", "finished", "and:", "isAsync", "ifFalse:", "tearDown", "value"],
- referencedClasses: []
- }),
- smalltalk.TestContext);
- smalltalk.addMethod(
- "_start",
- smalltalk.method({
- selector: "start",
- category: 'running',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
_st(self)._execute_((function(){
- return smalltalk.withContext(function($ctx2) {
_st(self["@testCase"])._setUp();
- return _st(self["@testCase"])._performTest();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
- return self}, function($ctx1) {$ctx1.fill(self,"start",{},smalltalk.TestContext)})},
- args: [],
- source: "start\x0a\x09self execute: [\x0a\x09\x09testCase setUp.\x0a\x09\x09testCase performTest ]",
- messageSends: ["execute:", "setUp", "performTest"],
- referencedClasses: []
- }),
- smalltalk.TestContext);
- smalltalk.addMethod(
- "_testCase_",
- smalltalk.method({
- selector: "testCase:",
- category: 'accessing',
- fn: function (aTestCase){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@testCase"]=aTestCase;
- return self}, function($ctx1) {$ctx1.fill(self,"testCase:",{aTestCase:aTestCase},smalltalk.TestContext)})},
- args: ["aTestCase"],
- source: "testCase: aTestCase\x0a\x09testCase := aTestCase",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.TestContext);
- smalltalk.addMethod(
- "_testCase_",
- smalltalk.method({
- selector: "testCase:",
- category: 'instance creation',
- fn: function (aTestCase){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $2,$3,$1;
- $2=_st(self)._new();
- _st($2)._testCase_(aTestCase);
- $3=_st($2)._yourself();
- $1=$3;
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"testCase:",{aTestCase:aTestCase},smalltalk.TestContext.klass)})},
- args: ["aTestCase"],
- source: "testCase: aTestCase\x0a\x09^self new\x0a\x09\x09testCase: aTestCase;\x0a\x09\x09yourself",
- messageSends: ["testCase:", "new", "yourself"],
- referencedClasses: []
- }),
- smalltalk.TestContext.klass);
- smalltalk.addClass('ReportingTestContext', smalltalk.TestContext, ['finished', 'result'], 'SUnit');
- smalltalk.ReportingTestContext.comment="ReportingTestContext adds `TestResult` reporting\x0ato `TestContext`.\x0a\x0aErrors are caught and save into a `TestResult`,\x0aWhen test case is finished (which can be later for async tests),\x0aa callback block is executed; this is used by a `TestSuiteRunner`."
- smalltalk.addMethod(
- "_execute_",
- smalltalk.method({
- selector: "execute:",
- category: 'running',
- fn: function (aBlock){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- _st((function(){
- return smalltalk.withContext(function($ctx2) {
return _st(self)._withErrorReporting_((function(){
- return smalltalk.withContext(function($ctx3) {
return smalltalk.TestContext.fn.prototype._execute_.apply(_st(self), [aBlock]);
- }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._ensure_((function(){
- return smalltalk.withContext(function($ctx2) {
$1=_st(self["@testCase"])._isAsync();
- if(! smalltalk.assert($1)){
- _st(self["@result"])._increaseRuns();
- return _st(self["@finished"])._value();
- };
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
- return self}, function($ctx1) {$ctx1.fill(self,"execute:",{aBlock:aBlock},smalltalk.ReportingTestContext)})},
- args: ["aBlock"],
- source: "execute: aBlock\x0a\x09[\x0a\x09\x09self withErrorReporting: [ super execute: aBlock ]\x0a\x09]\x0a\x09\x09ensure: [\x0a\x09\x09\x09testCase isAsync ifFalse: [\x0a\x09\x09\x09\x09result increaseRuns. finished value ] ]",
- messageSends: ["ensure:", "ifFalse:", "increaseRuns", "value", "isAsync", "withErrorReporting:", "execute:"],
- referencedClasses: []
- }),
- smalltalk.ReportingTestContext);
- smalltalk.addMethod(
- "_finished_",
- smalltalk.method({
- selector: "finished:",
- category: 'accessing',
- fn: function (aBlock){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@finished"]=aBlock;
- return self}, function($ctx1) {$ctx1.fill(self,"finished:",{aBlock:aBlock},smalltalk.ReportingTestContext)})},
- args: ["aBlock"],
- source: "finished: aBlock\x0a\x09finished := aBlock",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.ReportingTestContext);
- smalltalk.addMethod(
- "_result_",
- smalltalk.method({
- selector: "result:",
- category: 'accessing',
- fn: function (aTestResult){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@result"]=aTestResult;
- return self}, function($ctx1) {$ctx1.fill(self,"result:",{aTestResult:aTestResult},smalltalk.ReportingTestContext)})},
- args: ["aTestResult"],
- source: "result: aTestResult\x0a\x09result := aTestResult",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.ReportingTestContext);
- smalltalk.addMethod(
- "_withErrorReporting_",
- smalltalk.method({
- selector: "withErrorReporting:",
- category: 'private',
- fn: function (aBlock){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
_st((function(){
- return smalltalk.withContext(function($ctx2) {
return _st(aBlock)._on_do_((smalltalk.TestFailure || TestFailure),(function(ex){
- return smalltalk.withContext(function($ctx3) {
return _st(self["@result"])._addFailure_(self["@testCase"]);
- }, function($ctx3) {$ctx3.fillBlock({ex:ex},$ctx1)})}));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._on_do_((smalltalk.Error || Error),(function(ex){
- return smalltalk.withContext(function($ctx2) {
return _st(self["@result"])._addError_(self["@testCase"]);
- }, function($ctx2) {$ctx2.fillBlock({ex:ex},$ctx1)})}));
- return self}, function($ctx1) {$ctx1.fill(self,"withErrorReporting:",{aBlock:aBlock},smalltalk.ReportingTestContext)})},
- args: ["aBlock"],
- source: "withErrorReporting: aBlock\x0a\x09[ aBlock\x0a\x09\x09on: TestFailure\x0a\x09\x09do: [ :ex | result addFailure: testCase ]\x0a\x09]\x0a\x09\x09on: Error\x0a\x09\x09do: [ :ex | result addError: testCase ]",
- messageSends: ["on:do:", "addError:", "addFailure:"],
- referencedClasses: ["Error", "TestFailure"]
- }),
- smalltalk.ReportingTestContext);
- smalltalk.addMethod(
- "_testCase_result_finished_",
- smalltalk.method({
- selector: "testCase:result:finished:",
- category: 'instance creation',
- fn: function (aTestCase,aTestResult,aBlock){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $2,$3,$1;
- $2=smalltalk.TestContext.klass.fn.prototype._testCase_.apply(_st(self), [aTestCase]);
- _st($2)._result_(aTestResult);
- _st($2)._finished_(aBlock);
- $3=_st($2)._yourself();
- $1=$3;
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"testCase:result:finished:",{aTestCase:aTestCase,aTestResult:aTestResult,aBlock:aBlock},smalltalk.ReportingTestContext.klass)})},
- args: ["aTestCase", "aTestResult", "aBlock"],
- source: "testCase: aTestCase result: aTestResult finished: aBlock\x0a\x09^(super testCase: aTestCase)\x0a\x09\x09result: aTestResult;\x0a\x09\x09finished: aBlock;\x0a\x09\x09yourself",
- messageSends: ["result:", "testCase:", "finished:", "yourself"],
- referencedClasses: []
- }),
- smalltalk.ReportingTestContext.klass);
- smalltalk.addClass('TestFailure', smalltalk.Error, [], 'SUnit');
- smalltalk.TestFailure.comment="The test framework distinguishes between failures and errors.\x0aA failure is an event whose possibiity is explicitly anticipated and checked for in an assertion,\x0awhereas an error is an unanticipated problem like a division by 0 or an index out of bounds.\x0a\x0aTestFailure is raised when the boolean parameter of an #`assert:` or `#deny:` call is the opposite of what the assertion claims."
- smalltalk.addClass('TestResult', smalltalk.Object, ['timestamp', 'runs', 'errors', 'failures', 'total'], 'SUnit');
- smalltalk.TestResult.comment="A TestResult implements the collecting parameter pattern for running a bunch of tests.\x0a\x0aA TestResult holds tests that have run, sorted into the result categories of passed, failures and errors.\x0a\x0aTestResult is an interesting object to subclass or substitute. `#runCase:` is the external protocol you need to reproduce"
- smalltalk.addMethod(
- "_addError_",
- smalltalk.method({
- selector: "addError:",
- category: 'accessing',
- fn: function (anError){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
_st(_st(self)._errors())._add_(anError);
- return self}, function($ctx1) {$ctx1.fill(self,"addError:",{anError:anError},smalltalk.TestResult)})},
- args: ["anError"],
- source: "addError: anError\x0a\x09self errors add: anError",
- messageSends: ["add:", "errors"],
- referencedClasses: []
- }),
- smalltalk.TestResult);
- smalltalk.addMethod(
- "_addFailure_",
- smalltalk.method({
- selector: "addFailure:",
- category: 'accessing',
- fn: function (aFailure){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
_st(_st(self)._failures())._add_(aFailure);
- return self}, function($ctx1) {$ctx1.fill(self,"addFailure:",{aFailure:aFailure},smalltalk.TestResult)})},
- args: ["aFailure"],
- source: "addFailure: aFailure\x0a\x09self failures add: aFailure",
- messageSends: ["add:", "failures"],
- referencedClasses: []
- }),
- smalltalk.TestResult);
- smalltalk.addMethod(
- "_errors",
- smalltalk.method({
- selector: "errors",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@errors"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"errors",{},smalltalk.TestResult)})},
- args: [],
- source: "errors\x0a\x09^errors",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.TestResult);
- smalltalk.addMethod(
- "_failures",
- smalltalk.method({
- selector: "failures",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@failures"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"failures",{},smalltalk.TestResult)})},
- args: [],
- source: "failures\x0a\x09^failures",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.TestResult);
- smalltalk.addMethod(
- "_increaseRuns",
- smalltalk.method({
- selector: "increaseRuns",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@runs"]=_st(self["@runs"]).__plus((1));
- return self}, function($ctx1) {$ctx1.fill(self,"increaseRuns",{},smalltalk.TestResult)})},
- args: [],
- source: "increaseRuns\x0a\x09runs := runs + 1",
- messageSends: ["+"],
- referencedClasses: []
- }),
- smalltalk.TestResult);
- smalltalk.addMethod(
- "_initialize",
- smalltalk.method({
- selector: "initialize",
- category: 'initialization',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
smalltalk.Object.fn.prototype._initialize.apply(_st(self), []);
- self["@timestamp"]=_st((smalltalk.Date || Date))._now();
- self["@runs"]=(0);
- self["@errors"]=_st((smalltalk.Array || Array))._new();
- self["@failures"]=_st((smalltalk.Array || Array))._new();
- self["@total"]=(0);
- return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},smalltalk.TestResult)})},
- args: [],
- source: "initialize\x0a\x09super initialize.\x0a\x09timestamp := Date now.\x0a\x09runs := 0.\x0a\x09errors := Array new.\x0a\x09failures := Array new.\x0a\x09total := 0",
- messageSends: ["initialize", "now", "new"],
- referencedClasses: ["Date", "Array"]
- }),
- smalltalk.TestResult);
- smalltalk.addMethod(
- "_nextRunDo_",
- smalltalk.method({
- selector: "nextRunDo:",
- category: 'running',
- fn: function (aBlock){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $2,$1;
- $2=_st(_st(self)._runs()).__eq_eq(_st(self)._total());
- if(! smalltalk.assert($2)){
- $1=_st(aBlock)._value_(_st(_st(self)._runs()).__plus((1)));
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"nextRunDo:",{aBlock:aBlock},smalltalk.TestResult)})},
- args: ["aBlock"],
- source: "nextRunDo: aBlock\x0a\x22Runs aBlock with index of next run\x0aor does nothing if no more runs\x22\x0a^self runs == self total\x0a\x09ifFalse: [ aBlock value: self runs + 1 ]",
- messageSends: ["ifFalse:", "value:", "+", "runs", "==", "total"],
- referencedClasses: []
- }),
- smalltalk.TestResult);
- smalltalk.addMethod(
- "_runCase_",
- smalltalk.method({
- selector: "runCase:",
- category: 'running',
- fn: function (aTestCase){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
_st((function(){
- return smalltalk.withContext(function($ctx2) {
return _st((function(){
- return smalltalk.withContext(function($ctx3) {
_st(self)._increaseRuns();
- return _st(aTestCase)._runCase();
- }, function($ctx3) {$ctx3.fillBlock({},$ctx1)})}))._on_do_((smalltalk.TestFailure || TestFailure),(function(ex){
- return smalltalk.withContext(function($ctx3) {
return _st(self)._addFailure_(aTestCase);
- }, function($ctx3) {$ctx3.fillBlock({ex:ex},$ctx1)})}));
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}))._on_do_((smalltalk.Error || Error),(function(ex){
- return smalltalk.withContext(function($ctx2) {
return _st(self)._addError_(aTestCase);
- }, function($ctx2) {$ctx2.fillBlock({ex:ex},$ctx1)})}));
- return self}, function($ctx1) {$ctx1.fill(self,"runCase:",{aTestCase:aTestCase},smalltalk.TestResult)})},
- args: ["aTestCase"],
- source: "runCase: aTestCase\x0a\x09[[ self increaseRuns.\x0a\x09\x09aTestCase runCase]\x0a\x09on: TestFailure do: [:ex | self addFailure: aTestCase]]\x0a\x09on: Error do: [:ex | self addError: aTestCase]",
- messageSends: ["on:do:", "addError:", "addFailure:", "increaseRuns", "runCase"],
- referencedClasses: ["Error", "TestFailure"]
- }),
- smalltalk.TestResult);
- smalltalk.addMethod(
- "_runs",
- smalltalk.method({
- selector: "runs",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@runs"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"runs",{},smalltalk.TestResult)})},
- args: [],
- source: "runs\x0a\x09^runs",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.TestResult);
- smalltalk.addMethod(
- "_status",
- smalltalk.method({
- selector: "status",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $2,$3,$1;
- $2=_st(_st(self)._errors())._isEmpty();
- if(smalltalk.assert($2)){
- $3=_st(_st(self)._failures())._isEmpty();
- if(smalltalk.assert($3)){
- $1="success";
- } else {
- $1="failure";
- };
- } else {
- $1="error";
- };
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"status",{},smalltalk.TestResult)})},
- args: [],
- source: "status\x0a\x09^self errors isEmpty\x0a\x09\x09ifTrue: [\x0a\x09\x09\x09self failures isEmpty\x0a\x09\x09\x09\x09ifTrue: ['success']\x0a\x09\x09\x09\x09ifFalse: ['failure']]\x0a\x09\x09ifFalse: ['error']",
- messageSends: ["ifTrue:ifFalse:", "isEmpty", "failures", "errors"],
- referencedClasses: []
- }),
- smalltalk.TestResult);
- smalltalk.addMethod(
- "_timestamp",
- smalltalk.method({
- selector: "timestamp",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@timestamp"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"timestamp",{},smalltalk.TestResult)})},
- args: [],
- source: "timestamp\x0a\x09^timestamp",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.TestResult);
- smalltalk.addMethod(
- "_total",
- smalltalk.method({
- selector: "total",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@total"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"total",{},smalltalk.TestResult)})},
- args: [],
- source: "total\x0a\x09^total",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.TestResult);
- smalltalk.addMethod(
- "_total_",
- smalltalk.method({
- selector: "total:",
- category: 'accessing',
- fn: function (aNumber){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@total"]=aNumber;
- return self}, function($ctx1) {$ctx1.fill(self,"total:",{aNumber:aNumber},smalltalk.TestResult)})},
- args: ["aNumber"],
- source: "total: aNumber\x0a\x09total := aNumber",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.TestResult);
- smalltalk.addClass('TestSuiteRunner', smalltalk.Object, ['suite', 'result', 'announcer', 'runNextTest'], 'SUnit');
- smalltalk.addMethod(
- "_announcer",
- smalltalk.method({
- selector: "announcer",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@announcer"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"announcer",{},smalltalk.TestSuiteRunner)})},
- args: [],
- source: "announcer\x0a\x09^announcer",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.TestSuiteRunner);
- smalltalk.addMethod(
- "_contextOf_",
- smalltalk.method({
- selector: "contextOf:",
- category: 'private',
- fn: function (anInteger){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st((smalltalk.ReportingTestContext || ReportingTestContext))._testCase_result_finished_(_st(self["@suite"])._at_(anInteger),self["@result"],(function(){
- return smalltalk.withContext(function($ctx2) {
return _st(self)._resume();
- }, function($ctx2) {$ctx2.fillBlock({},$ctx1)})}));
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"contextOf:",{anInteger:anInteger},smalltalk.TestSuiteRunner)})},
- args: ["anInteger"],
- source: "contextOf: anInteger\x0a\x09^ReportingTestContext testCase: (suite at: anInteger) result: result finished: [ self resume ]",
- messageSends: ["testCase:result:finished:", "at:", "resume"],
- referencedClasses: ["ReportingTestContext"]
- }),
- smalltalk.TestSuiteRunner);
- smalltalk.addMethod(
- "_initialize",
- smalltalk.method({
- selector: "initialize",
- category: 'initialization',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- smalltalk.Object.fn.prototype._initialize.apply(_st(self), []);
- self["@announcer"]=_st((smalltalk.Announcer || Announcer))._new();
- self["@result"]=_st((smalltalk.TestResult || TestResult))._new();
- self["@runNextTest"]=(function(){
- var runs;
- return smalltalk.withContext(function($ctx2) {
runs=_st(self["@result"])._runs();
- runs;
- $1=_st(runs).__lt(_st(self["@result"])._total());
- if(smalltalk.assert($1)){
- return _st(_st(self)._contextOf_(_st(runs).__plus((1))))._start();
- };
- }, function($ctx2) {$ctx2.fillBlock({runs:runs},$ctx1)})});
- return self}, function($ctx1) {$ctx1.fill(self,"initialize",{},smalltalk.TestSuiteRunner)})},
- args: [],
- source: "initialize\x0a\x09super initialize.\x0a\x09announcer := Announcer new.\x0a\x09result := TestResult new.\x0a\x09runNextTest := [ | runs | runs := result runs. runs < result total ifTrue: [ (self contextOf: runs + 1) start ]].",
- messageSends: ["initialize", "new", "runs", "ifTrue:", "start", "contextOf:", "+", "<", "total"],
- referencedClasses: ["Announcer", "TestResult"]
- }),
- smalltalk.TestSuiteRunner);
- smalltalk.addMethod(
- "_result",
- smalltalk.method({
- selector: "result",
- category: 'accessing',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=self["@result"];
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"result",{},smalltalk.TestSuiteRunner)})},
- args: [],
- source: "result\x0a\x09^result",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.TestSuiteRunner);
- smalltalk.addMethod(
- "_resume",
- smalltalk.method({
- selector: "resume",
- category: 'actions',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
_st(self["@runNextTest"])._fork();
- _st(self["@announcer"])._announce_(_st(_st((smalltalk.ResultAnnouncement || ResultAnnouncement))._new())._result_(self["@result"]));
- return self}, function($ctx1) {$ctx1.fill(self,"resume",{},smalltalk.TestSuiteRunner)})},
- args: [],
- source: "resume\x0a\x09runNextTest fork.\x0a\x09announcer announce: (ResultAnnouncement new result: result)",
- messageSends: ["fork", "announce:", "result:", "new"],
- referencedClasses: ["ResultAnnouncement"]
- }),
- smalltalk.TestSuiteRunner);
- smalltalk.addMethod(
- "_run",
- smalltalk.method({
- selector: "run",
- category: 'actions',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
_st(self["@result"])._total_(_st(self["@suite"])._size());
- _st(self)._resume();
- return self}, function($ctx1) {$ctx1.fill(self,"run",{},smalltalk.TestSuiteRunner)})},
- args: [],
- source: "run\x0a\x09result total: suite size.\x0a\x09self resume",
- messageSends: ["total:", "size", "resume"],
- referencedClasses: []
- }),
- smalltalk.TestSuiteRunner);
- smalltalk.addMethod(
- "_suite_",
- smalltalk.method({
- selector: "suite:",
- category: 'accessing',
- fn: function (aCollection){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
self["@suite"]=aCollection;
- return self}, function($ctx1) {$ctx1.fill(self,"suite:",{aCollection:aCollection},smalltalk.TestSuiteRunner)})},
- args: ["aCollection"],
- source: "suite: aCollection\x0a\x09suite := aCollection",
- messageSends: [],
- referencedClasses: []
- }),
- smalltalk.TestSuiteRunner);
- smalltalk.addMethod(
- "_new",
- smalltalk.method({
- selector: "new",
- category: 'instance creation',
- fn: function (){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
_st(self)._shouldNotImplement();
- return self}, function($ctx1) {$ctx1.fill(self,"new",{},smalltalk.TestSuiteRunner.klass)})},
- args: [],
- source: "new\x0a\x09self shouldNotImplement",
- messageSends: ["shouldNotImplement"],
- referencedClasses: []
- }),
- smalltalk.TestSuiteRunner.klass);
- smalltalk.addMethod(
- "_on_",
- smalltalk.method({
- selector: "on:",
- category: 'instance creation',
- fn: function (aCollection){
- var self=this;
- return smalltalk.withContext(function($ctx1) {
var $1;
- $1=_st(smalltalk.Object.klass.fn.prototype._new.apply(_st(self), []))._suite_(aCollection);
- return $1;
- }, function($ctx1) {$ctx1.fill(self,"on:",{aCollection:aCollection},smalltalk.TestSuiteRunner.klass)})},
- args: ["aCollection"],
- source: "on: aCollection\x0a\x09^super new suite: aCollection",
- messageSends: ["suite:", "new"],
- referencedClasses: []
- }),
- smalltalk.TestSuiteRunner.klass);
|