Flash Builder:更改单元测试的默认套件?

时间:2010-12-07 13:56:38

标签: flex unit-testing flash-builder puremvc test-suite

在使用PureMVC在Flash Builder 4中运行单元测试时,更改默认套件的步骤是什么?

2 个答案:

答案 0 :(得分:0)

创建新测试用例或新测试套件时,您可以选择是否从菜单顶部使用FlexUnit4或FlexUnit1。我环顾四周,没有看到任何预先选择其中一个的方法。

答案 1 :(得分: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;
}