次のクラスがあります(PilsnerContextはDbContextクラスです)。
public abstract class ServiceBase<T> : IService<T> where T: class, IEntity
{
protected readonly PilsnerContext Context;
protected ServiceBase(PilsnerContext context)
{
Context = context;
}
public virtual T Add(T entity)
{
var newEntity = Context.Set<T>().Add(entity);
Context.SaveChanges();
return newEntity;
}
}
public class ProspectsService : ServiceBase<Prospect>
{
public ProspectsService(PilsnerContext context) : base(context){}
}
そして、私はAddメソッドの単体テストを作成して、次のようなコンテキストを模倣しようとしています:
[TestClass]
public class ProspectTest
{
[TestMethod]
public void AddProspect()
{
var mockProspect = new Mock<DbSet<Prospect>>();
var mockContext = new Mock<PilsnerContext>();
mockContext.Setup(m => m.Prospects).Returns(mockProspect.Object);
var prospectService = new ProspectsService(mockContext.Object);
var newProspect = new Prospect()
{
CreatedOn = DateTimeOffset.Now,
Browser = "IE",
Number = "1234567890",
Visits = 0,
LastVisitedOn = DateTimeOffset.Now
};
prospectService.Add(newProspect);
mockProspect.Verify(m=>m.Add(It.IsAny<Prospect>()), Times.Once);
mockContext.Verify(m=>m.SaveChanges(), Times.Once);
}
}
しかし断言:
mockProspect.Verify(m=>m.Add(It.IsAny<Prospect>()), Times.Once);
失敗しています、私はAddメソッドでContext.Prospects.Add()の代わりにContext.set()。Add()を使用しているためだと思いますが、このテストに合格する正しい方法は何ですか?
例外は次のとおりです。
Expected invocation on the mock once, but was 0 times: m => m.Add(It.IsAny<Prospect>()) No setups configured. No invocations performed.
前もって感謝します。
私はあなたのソリューションPatrick Quirkを試しましたが、DbContext.Setが仮想ではないというエラーが表示されました。
私はここでその解決策を見つけました:
Entity Framework 6の非同期メソッドをモックする方法
次のようなDbContextのインターフェースを作成する
public interface IPilsnerContext
{
DbSet<T> Set<T>() where T : class;
}
そのように私はそれをあざけることができました。
ありがとう!
これは私の最初の質問ですが、この質問を重複または何かとしてマークできるかどうかわかりません。
DbSet
を返すための設定が不足しているようです:
mockContext.Setup(m => m.Set<Prospect>()).Returns(mockProspect.Object);