# File test/unit/testsuite.rb, line 28
   def run(result, &progress_block)
				@tests.sort {
					|arg1, arg2|
					arg1.name <=> arg2.name
				}.each {
					|test|
					progress_block.call("Running #{test.name}...") if ( progress_block != nil )
					test.run(result, &progress_block)
				}
			end