Sha256: 7e0dabf28858411535eadc1af515974999f91f3072b0136be489347318038649
Contents?: true
Size: 626 Bytes
Versions: 3
Compression:
Stored size: 626 Bytes
Contents
package asunit.framework { public class TestCaseMock extends TestCase { public var testMethod1Run:Boolean; public var testMethod2Run:Boolean; public var testMethod3Run:Boolean; public function TestCaseMock(methodName:String = null) { super(methodName); } public function testMethod1():void { testMethod1Run = true; } public function testMethod2():void { testMethod2Run = true; } public function testMethod3():void { testMethod3Run = true; } } }
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
asunit4-4.2.3.pre | test/asunit/framework/TestCaseMock.as |
asunit4-4.2.2.pre | test/asunit/framework/TestCaseMock.as |
asunit4-4.2.1.pre | test/asunit/framework/TestCaseMock.as |