代码之家  ›  专栏  ›  技术社区  ›  driAn

VisualStudio2008:未正确检测泛型类中的单元测试方法

  •  2
  • driAn  · 技术社区  · 14 年前

    我有一堆存储库类,我想使用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可见,这又会导致冗余。。

    有没有更好的方法来解决这种痛苦?我不想用大量的包装代码把测试搞得一团糟:(

    1 回复  |  直到 14 年前
        1
  •  2
  •   Reinderien    14 年前

    有没有可能在测试声明中没有泛型,而仅仅依赖于IEntity,比如:

    IEntity GetById(int id);
    IEnumerable<IEntity> GetAll();
    

    如果这两个函数需要实例化IEntity,您可以让存储库构造函数接受工厂对象。工厂对象的工作就是实例化。工厂将有一个抽象基(或接口),其实例化方法只返回一个IEntity,子类可以是模板化的,也可以不是模板化的。