gpt4 book ai didi

c# - 对接口(interface)存储库进行单元测试的目的是什么

转载 作者:太空狗 更新时间:2023-10-29 20:53:35 24 4
gpt4 key购买 nike

我正在对用于检索类型为 Customer 的对象的 ICustomerRepository 接口(interface)进行单元测试。

  • 作为单元测试,我通过以这种方式测试 ICustomerRepository 获得了什么值(value)?
  • 在什么情况下以下测试会失败?
  • 对于这种性质的测试,是否建议进行我知道应该失败的测试?即当我知道我只将 5 放在存储库中时查找 id 4

我可能遗漏了一些明显的东西,但似乎实现 ICustomerRepository 的类的集成测试更有值(value)。

[TestClass]
public class CustomerTests : TestClassBase
{
private Customer SetUpCustomerForRepository()
{
return new Customer()
{
CustId = 5,
DifId = "55",
CustLookupName = "The Dude",
LoginList = new[]
{
new Login { LoginCustId = 5, LoginName = "tdude" },
new Login { LoginCustId = 5, LoginName = "tdude2" }
}
};
}

[TestMethod]
public void CanGetCustomerById()
{
// arrange
var customer = SetUpCustomerForRepository();
var repository = Stub<ICustomerRepository>();

// act
repository.Stub(rep => rep.GetById(5)).Return(customer);

// assert
Assert.AreEqual(customer, repository.GetById(5));
}
}

测试基类

public class TestClassBase
{
protected T Stub<T>() where T : class
{
return MockRepository.GenerateStub<T>();
}
}

ICustomerRepository 和 IRepository

public interface ICustomerRepository : IRepository<Customer>
{
IList<Customer> FindCustomers(string q);
Customer GetCustomerByDifID(string difId);
Customer GetCustomerByLogin(string loginName);
}

public interface IRepository<T>
{
void Save(T entity);
void Save(List<T> entity);
bool Save(T entity, out string message);
void Delete(T entity);
T GetById(int id);
ICollection<T> FindAll();
}

最佳答案

我可能遗漏了一些东西,但似乎您测试的每个方面都是模拟的?

一般来说,您只模拟不是测试核心的对象。在这种情况下,您可以将此存储库用作您希望对存储库执行某些操作以检索客户 #5 并对其执行操作的函数的源。

例如,您可以模拟客户存储库,以便调用验证用户登录的方法。您将使用模拟存储库来防止您的单元测试依赖真实的数据源,而不是测试您的模拟存储库。

关于c# - 对接口(interface)存储库进行单元测试的目的是什么,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3066258/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com