org.scalatools.testing
Interface Runner

All Known Implementing Classes:
Runner2

public interface Runner


Method Summary
 void run(java.lang.String testClassName, TestFingerprint fingerprint, EventHandler eventHandler, java.lang.String[] args)
          Runs the test suite with class name 'testClassName' and returns the results of executing each test contained in the suite.
 

Method Detail

run

void run(java.lang.String testClassName,
         TestFingerprint fingerprint,
         EventHandler eventHandler,
         java.lang.String[] args)
Runs the test suite with class name 'testClassName' and returns the results of executing each test contained in the suite. This Runner should run the suite in the calling (current) thread. 'fingerprint' indicates how the test suite was identified as a test suite. This method may be called with the same value for 'testClassName' but different fingerprints. For example, if both a class and its companion object were tests, this method would be called with the same name but with a different value for 'fingerprint.isModule'.