1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
/* <license> * This file is part of the dis-Emi-A HaXe Library. Copyright © edA-qa mort-ora-y * For full copyright and license information please refer to doc/license.txt. * </license> */ class IClipTitle extends flash.display.Sprite { public function new() { super(); } } class WithResource extends haxe.unit.TestCase { function testLoad() { var sp = new IClipTitle(); //flash.Lib.current.addChild( sp ); assertTrue( true ); } } |