如何对将数据插入数据库的方法进行单元测试?
我有一个正在创建的服务,但不知道如何对其进行单元测试。
public class EnterpriseDownloadRepository : IEnterpriseDownloadRepository
{
public int AddFileDownloadEntry(Contract.Data.FileDownloadEntry fileDownloadEntry)
{
using (var context = new EFFileDownloadEntryEntitites())
{
int returnValue =context.FileDownloadEntries.AddObject(fileDownloadEntry);
context.SaveChanges();
return returnValue;
}
}
}