asp.net-mvc – ASP.net MVC RTM测试命名约定

前端之家收集整理的这篇文章主要介绍了asp.net-mvc – ASP.net MVC RTM测试命名约定前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在开发一个asp.net mvc应用程序并编写我的单元测试BDD样式.
例如.

GetResource_WhenResourceFileExists_ShouldReturnResources()

但是当我为我的控制器编写测试时,我通常有两个同名的方法.一个没有获取请求的参数,一个没有用于帖子.有没有人在这里有一个很好的命名约定来区分这两者?

我能想到:

1.
LogIn_WithParameters_ShouldReturnLogInView()
LogIn_WithoutParameters_WhenAuthenticationFailed_ShouldReturnLogInView()
LogIn_WithoutParameters_WhenAuthenticationPassed_ShouldReturnProfileRedirect()

2.
LogIn_Get_ShouldReturnLogInView()
LogIn_Post_WhenAuthenticationFailed_ShouldReturnLogInView()
LogIn_Post_WhenAuthenticationPassed_ShouldReturnProfileRedirect()

3.
LogIn_ShouldReturnLogInView()
LogIn_WhenCalledWithParametersAndAuthenticationFailed_ShouldReturnLogInView()
LogIn_WhenCalledWithParametersAndAuthenticationPassed_ShouldReturnProfileRedirect()

任何意见?

解决方法

我使用以下格式,对我来说效果非常好:
[TestFixture]    
public class Log_in_with_parameters_should
{
    [Test]
    public void Return_the_log_in_view() {}
}

[TestFixture]    
public class Log_in_without_parameters_should
{
    [Test]
    public void Return_the_log_in_view_when_the_authentication_Failed() {}

    [Test]
    public void Redirect_to_the_profile_when_the_authentication_passed() {}
}
原文链接:https://www.f2er.com/aspnet/247182.html

猜你在找的asp.Net相关文章