チェンジセット 2647
- コミット日時:
- 2009/05/15 04:40:41 (3 年前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
as3/GeniusFramework/branches/2.0/t/RunTest.as
r2643 r2647 1 package1 package 2 2 { 3 import flash.desktop.NativeApplication; 3 4 import flash.display.Sprite; 5 import flash.events.InvokeEvent; 6 4 7 import org.libspark.as3unit.runner.AS3UnitCore; 5 8 … … 8 11 public function RunTest() 9 12 { 13 NativeApplication.nativeApplication.addEventListener(InvokeEvent.INVOKE, initialize); 14 } 15 16 private function initialize(event:InvokeEvent):void 17 { 18 trace("--------------------------------------------------------------------------------"); 19 trace("Genius Framework 2"); 20 trace(""); 21 22 var args:Array = event.arguments; 23 24 trace("[RunAllTests at " + new Date() + "]"); 10 25 AS3UnitCore.main(AllTests); 26 27 trace(""); 28 NativeApplication.nativeApplication.exit(); 11 29 } 12 30 }

