我无法为我的功能文件定义[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]
.
如果有人可以帮助我解决这个问题,那就太好了。谢谢!