これが私の DAL の一部です。
DataContext インターフェース:
public interface IDataContextFactory
{
System.Data.Linq.DataContext Context { get; }
void SaveAll();
}
生成されたクラスを含むデータ コンテキスト クラスは次のとおりです。
partial class InternetRailwayTicketSalesDataContext: DataContext, IDataContextFactory
{
public System.Data.Linq.DataContext Context
{
get { return this; }
}
public void SaveAll()
{
this.SubmitChanges();
}
}
これが私のリポジトリインターフェースです:
public interface IRepository<T> where T : class
{
/// <summary>
/// Return all instances of type T.
/// </summary>
/// <returns></returns>
IEnumerable<T> GetAll();
}
これが私のリポジトリインターフェースの実装です:
public class Repository<T> : IRepository<T> where T : class
{
protected IDataContextFactory _dataContextFactory;
/// <summary>
/// Return all instances of type T.
/// </summary>
/// <returns></returns>
public IEnumerable<T> GetAll()
{
return GetTable;
}
private System.Data.Linq.Table<T> GetTable
{
get { return _dataContextFactory.Context.GetTable<T>(); }
}
}
具体的なリポジトリ クラスのインターフェイスは次のとおりです。
interface IPasswayRepository
{
bool IsPasswayExists(int id);
}
最後に、具体的なリポジトリ クラスの実装を次に示します。
class PasswayRepository:Repository<Passway>, IPasswayRepository
{
public PasswayRepository(IDataContextFactory context)
: base(context)
{
}
public bool IsPasswayExists(int id)
{
if (GetAll().Where(pass => pass.Id == id && pass.IsDeleted == false).Count() > 0)
return true;
else
return false;
}
}
IsPasswayExists メソッドをテストする方法の例を教えてください。(必要に応じて、任意のモック フレームワークを使用できます)。