Created
October 5, 2013 04:41
-
-
Save masamunet/6836745 to your computer and use it in GitHub Desktop.
ProgressionのCommandをFlexUnitでテスト ref: http://qiita.com/masamunet/items/705792da4dbcf80005a9
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| [Test(async)] | |
| public function testCommand():void | |
| { | |
| var com:Command = new Command(); | |
| com.onComplete = Async.asyncHandler(this, function():void{ | |
| assertTrue(true); | |
| }, 5000); | |
| com.execute(); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment