Changeset 7704

Show
Ignore:
Timestamp:
03/20/07 06:38:25 (22 months ago)
Author:
alex
Message:

output how many tests need to be run. Refs #2550

Location:
dojo/trunk/tests
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • dojo/trunk/tests/runner.js

    r7702 r7704  
    298298 
    299299tests._testCount = 0; 
     300tests._groupCount = 0; 
    300301tests._errorCount = 0; 
    301302tests._failureCount = 0; 
     
    309310        this._errorCount = 0; 
    310311        this._failureCount = 0; 
     312        this.debug(this._testCount, "tests to run in", this._groupCount, "groups"); 
    311313} 
    312314 
     
    365367        //              "runTest" method (respectively) when the test is run. 
    366368        if(!this._groups[group]){ 
     369                this._groupCount++; 
    367370                this._groups[group] = []; 
    368371                this._groups[group].inFlight = 0; 
  • dojo/trunk/tests/_browserRunner.js

    r7703 r7704  
    7373                tests._init = (function(oi){ 
    7474                        return function(){ 
    75                                 oi.apply(tests, arguments); 
    7675                                var lb = byId("logBody"); 
    7776                                if(lb){ 
     
    8180                                        } 
    8281                                } 
     82                                oi.apply(tests, arguments); 
    8383                        } 
    8484                })(tests._init);