Sha256: ac2aaca2b05c45c7ebb2d982bcebc5cbe357ebb6e4b0de5369adb405a0adf736
Contents?: true
Size: 433 Bytes
Versions: 3
Compression:
Stored size: 433 Bytes
Contents
package asunit.support { import asunit.asserts.*; public class IgnoredMethod { [Before] public function runBefore():void { } [After] public function runAfter():void { } [Ignore("because")] [Test] public function should_be_ignored():void { fail('this test method should be ignored'); } [Test] public function should_not_be_ignored():void { } } }
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
asunit4-4.2.3.pre | test/asunit/support/IgnoredMethod.as |
asunit4-4.2.2.pre | test/asunit/support/IgnoredMethod.as |
asunit4-4.2.1.pre | test/asunit/support/IgnoredMethod.as |