Sha256: ac37722d2dc55c5ef464dd8f73908bc102a55e0a6c8be67536fdaf67f5e6faf0

Contents?: true

Size: 705 Bytes

Versions: 28

Compression:

Stored size: 705 Bytes

Contents

import asunit.framework.TestCaseMock;
import asunit.framework.TestCase;

class asunit.framework.TestCaseTest extends TestCase {
	private var className:String = "asunit.framework.TestCaseTest";
	private var instance:TestCaseMock;

	public function TestCaseTest(testMethod:String) {
		super(testMethod);
	}

	public function setUp():Void {
		var initObj:Object = new Object();
		instance = TestCaseMock(attachMovie(TestCaseMock.linkageId, initObj));
	}

	public function tearDown():Void {
		instance.removeMovieClip();
		delete instance;
	}

	public function testInstantiated():Void {
		assertTrue("TestCaseMock instantiated", instance instanceof TestCaseMock);
	}

	public function testView():Void {
	}
}

Version data entries

28 entries across 28 versions & 1 rubygems

Version Path
asproject-0.1.30 templates/asproject/asunit25/project/lib/asunit/asunit/framework/TestCaseTest.as
asproject-0.1.21 templates/asproject/asunit25/project/lib/asunit/asunit/framework/TestCaseTest.as
asproject-0.1.28 templates/asproject/asunit25/project/lib/asunit/asunit/framework/TestCaseTest.as
asproject-0.1.27 templates/asproject/asunit25/project/lib/asunit/asunit/framework/TestCaseTest.as
asproject-0.1.31 templates/asproject/asunit25/project/lib/asunit/asunit/framework/TestCaseTest.as
asproject-0.1.29 templates/asproject/asunit25/project/lib/asunit/asunit/framework/TestCaseTest.as
asproject-0.1.35 templates/asproject/asunit25/project/lib/asunit/asunit/framework/TestCaseTest.as
asproject-0.1.37 templates/asproject/asunit25/project/lib/asunit/asunit/framework/TestCaseTest.as
asproject-0.1.34 templates/asproject/asunit25/project/lib/asunit/asunit/framework/TestCaseTest.as
asproject-0.1.36 templates/asproject/asunit25/project/lib/asunit/asunit/framework/TestCaseTest.as
asproject-0.1.32 templates/asproject/asunit25/project/lib/asunit/asunit/framework/TestCaseTest.as
asproject-0.1.33 templates/asproject/asunit25/project/lib/asunit/asunit/framework/TestCaseTest.as
asproject-0.1.44 templates/asproject/asunit25/project/lib/asunit/asunit/framework/TestCaseTest.as
asproject-0.1.43 templates/asproject/asunit25/project/lib/asunit/asunit/framework/TestCaseTest.as
asproject-0.1.42 templates/asproject/asunit25/project/lib/asunit/asunit/framework/TestCaseTest.as
asproject-0.1.41 templates/asproject/asunit25/project/lib/asunit/asunit/framework/TestCaseTest.as
asproject-0.1.40 templates/asproject/asunit25/project/lib/asunit/asunit/framework/TestCaseTest.as
asproject-0.1.38 templates/asproject/asunit25/project/lib/asunit/asunit/framework/TestCaseTest.as
asproject-0.1.60 templates/asproject/asunit25/project/lib/asunit/asunit/framework/TestCaseTest.as
asproject-0.1.68 templates/asproject/asunit25/project/lib/asunit/asunit/framework/TestCaseTest.as