我对我的控制器进行了以下测试
[Binding]
public class RegisterUserSteps
{
private AccountController _accountController = new AccountController();
private ActionResult _result;
[When(@"the user goes to the register user screen")]
public void WhenTheUserGoesToTheRegisterUserScreen()
{
_result = _accountController.Register();
}
[Then(@"the register user view should be displayed")]
public void ThenTheRegisterUserViewShouldBeDisplayed()
{
Assert.AreEqual("Register", _accountController.ViewData["Title"]);
}
}
它工作正常,但看起来不太好,因为我不想制作全局/类级别的变量。那么规范流中这些变量的替代品可能是什么。因为当我们进入大型应用程序并且单步文件包含许多场景时,它将变得一团糟并且难以管理。
提前致谢