One of my base repository classes contains a method:
public abstract class RepositoryBase<T, TDb> : IRepository<T>
where T : IEntity
where TDb : class, IDbEntity, new()
{
protected internal abstract Table<TDb> GetTable();
...
}
I am writing unit test for derived repository class that contains implementation of mentioned method:
public class CmOptionRepository :
RepositoryBase<ICmOption, CMCoreDAL.DbData.CMOption>, ICmOptionRepository
{
protected internal override System.Data.Linq.Table<CMCoreDAL.DbData.CMOption>
GetTable()
{
return Context.CMOptions;
}
....
}
Here: Context - is Linq-model of DB, CMOptions - one of the DB tables.
I want my 'GetTable()' method returning a special set of data.
I am going to mock the method:
System.Data.Linq.Table<CMCoreDAL.DbData.CMOption> table = ...;
Mock<CmOptionRepository> mockRepository =
new Mock<CmOptionRepository>(MockBehavior.Strict);
mockRepository.Setup(mock => mock.GetTable()).Returns(table);
But don't know how to create an instance of System.Data.Linq.Table<CMCoreDAL.DbData.CMOption> class.
Question: how can I mock the System.Data.Linq.Table<>? Or probably I need to change method signature in order to avoid System.Data.Linq.Table<> class usage?
Please advise. Any thoughts are welcome.
P.S. I am using Moq.