11

我无法为我的功能文件定义[BeforeFeature]/[AfterFeature]挂钩。被测应用程序是 WPF 独立桌面应用程序。

如果我使用[BeforeScenario]/[AfterScenario]一切正常,应用程序启动没有任何问题,设计的步骤正确执行,应用程序关闭。

一旦我对[BeforeFeature]/[AfterFeature]标记使用相同的步骤,应用程序就会启动并且测试失败:

启动此过程时发生以下错误:对象引用未设置为对象的实例。

这是一个例子:

[Binding]
public class Setup
{   
    [BeforeScenario("setup_scenario")]
    public static void BeforeAppScenario()
    {
        UILoader.General.StartApplication();
    }

    [AfterScenario("setup_scenario")]
    public static void AfterAppScenario()
    {
        UILoader.General.CloseApplication();
    }

    [BeforeFeature("setup_feature")]
    public static void BeforeAppFeature()
    {
        UILoader.General.StartApplication();
    }

    [AfterFeature("setup_feature")]
    public static void AfterAppFeature()
    {
        UILoader.General.CloseApplication();
    }
}

StartApplication/CloseApplication使用 Coded UI Test Builder 记录和自动生成:

public void StartApplication()
{
    // Launch '%ProgramFiles%\...
    ApplicationUnderTest Application = ApplicationUnderTest.Launch(this.StartApplicationParams.ExePath, this.StartApplicationParams.AlternateExePath);
}

public class StartApplicationParams
{    
    public string ExePath = "C:\\Program Files..."
    public string AlternateExePath = "%ProgramFiles%\\..."
}

值得注意的是:我对 SpecFlow 很陌生。我无法弄清楚为什么我的测试失败[BeforeFeature]并且在[BeforeScenario].

如果有人可以帮助我解决这个问题,那就太好了。谢谢!

4

1 回答 1

17

我最近遇到了类似的问题。不确定这是否仍然可以帮助您,但它可能对偶然发现这个问题的人有用。

要使 BeforeFeature\AfterFeature 起作用,需要对功能本身进行标记,仅标记特定场景是行不通的。

您的功能文件应该像这样开始:

@setup_feature
Feature: Name Of Your Feature

@setup_scenario
Scenario: ...
于 2013-08-21T19:30:22.273 回答