我有一堆存储库类,我想使用visualstudio2008进行单元测试。它们实现以下接口:
public interface IRepository<TEntity> where TEntity : IEntity
{
/// <summary>
/// Get entity by ID
/// </summary>
/// <param name="id">The ID</param>
/// <returns></returns>
TEntity GetById(int id);
/// <summary>
/// Get all entities
/// </summary>
/// <returns></returns>
IEnumerable<TEntity> GetAll();
}
现在我可以为我拥有的每个存储库编写一个完整的测试类。然而,为了最小化冗余,我想编写一个包含主要“泛型”测试方法的基本测试类。这将允许我为每个存储库编写一个简单的子类,如下所示:
[TestClass]
public class EmployeeRepositoryTest : RepositoryTestBase<Employee>
{
// all test methods are inherited from the base class
// additional tests could be added here...
}
但是,visualstudio没有检测到RepositoryTestBase中定义的测试方法(因为泛型),这使得这种方法毫无用处。为了让它工作,我需要包装基类的每个方法,使它们对visualstudio可见,这又会导致冗余。。
有没有更好的方法来解决这种痛苦?我不想用大量的包装代码把测试搞得一团糟:(