Sha256: b99879e1c171ad629f0e3a10444f303abe3bcd9b476ecd842bf557b3f133f8be
Contents?: true
Size: 460 Bytes
Versions: 28
Compression:
Stored size: 460 Bytes
Contents
package asunit.framework { import asunit.errors.AssertionFailedError; public interface TestListener { /** * An error occurred. */ function addError(test:Test, t:Error):void; /** * A failure occurred. */ function addFailure(test:Test, t:AssertionFailedError):void; /** * A test ended. */ function endTest(test:Test):void; /** * A test started. */ function startTest(test:Test):void; } }
Version data entries
28 entries across 28 versions & 1 rubygems