首页 > 其他 > 详细

模拟测试—moq:简单一两句

时间:2015-11-05 18:27:26      阅读:204      评论:0      收藏:0      [点我收藏+]

在Xunit的基础上,说话模拟测试。

假如我们有这样一个控制器里面有这样一个方法,如图

技术分享

我们在对Bar测试得时候,如果测试未通过,错误有可能来至于Bar,也有可能错误来至于serverde Foo方法。

这样就会干扰我们对于Bar的测试,因为我们只想测试Bar是否有问题。那我们就可以使用模拟测试,模拟server.

安装Moq包

在NuGet里搜索并安装Moq包。

安装后编写单元测试代码

using Xunit;
using Moq;
public void MoqTest()
{
Controller controller=new Controller();

var mo = new Mock<IServer>(); mo.Setup(foo => foo.Foo())
.Returns("ok"); Assert.Equal("ok", controller.Bar(mo.Object)); }

创建一个对象

var mo=new Mock<Iserver>();

设置方法放回值

mo.Setup(foo=>foo.Foo())

    .Returns("ok");

就这样简,单运行测试

测试结果如果

技术分享

测试代码

技术分享

IServer:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MyFirstUnitTests
{
    public interface IServer
    {
        string Foo();
    }
}

Server:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MyFirstUnitTests
{
    public class Server:IServer
    {
        public string Foo()
        {
            return "test";
        }
    }
}

Controller:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace MyFirstUnitTests
{
    public class Controller
    {
        public string Bar(IServer server)
        {
            var res = server.Foo();
            return res;
        }
    }
}

PS:呵呵,这是一篇水文

O(∩_∩)O哈哈~

模拟测试—moq:简单一两句

原文:http://www.cnblogs.com/c-o-d-e/p/4940025.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!