在使用 PureMVC 的 Flash Builder 4 中运行单元测试时更改默认套件的步骤是什么?
问问题
162 次
2 回答
0
当您创建新的测试用例或新的测试套件时,您可以从菜单顶部选择是使用 FlexUnit4 还是 FlexUnit1。我环顾四周,没有看到任何预先选择一个或另一个先验的方法。
于 2010-12-07T16:22:57.030 回答
0
为了更改或添加到测试套件,我必须更改侦听器中的测试套件,以针对应用程序组件的中介器上的启动事件。
override public function handleNotification( note:INotification ):void
{
switch ( note.getName() )
{
case NotificationConstants.STARTUP_SUCCESS:
flexUnitApplication.testRunner.runWithFlexUnit4Runner(currentRunTestSuite(), "MyTests");
break;
}
}
private function currentRunTestSuite():Array
{
var testsToRun:Array = new Array();
testsToRun.push(MyTestSuite);
return testsToRun;
}
于 2010-12-13T13:21:41.910 回答