In ruby’s test/unit, the software indicates how long it takes for the tests to run, and the series of passes, errors and fails act like a pseudo-progress bar.
Apart from using code profiling tools or running tests individually, is there an easy way of telling which test methods are fast and which ones are slow?
When I need to do this in a large test suite, I override Test::Unit::TestCase setup and teardown. It doesn’t give precise measurements, but it can help assess relative speed.