Skip to content

Instantly share code, notes, and snippets.

@masamunet
Created October 5, 2013 04:41
Show Gist options
  • Select an option

  • Save masamunet/6836745 to your computer and use it in GitHub Desktop.

Select an option

Save masamunet/6836745 to your computer and use it in GitHub Desktop.
ProgressionのCommandをFlexUnitでテスト ref: http://qiita.com/masamunet/items/705792da4dbcf80005a9
[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