using System; using System.Data.Entity; using StoreApp.Models; namespace StoreApp.Tests { public class TestStoreAppContext : IStoreAppContext { public TestStoreAppContext() { this.Products = new TestProductDbSet(); } public DbSet Products { get; set; } public int SaveChanges() { return 0; } public void MarkAsModified(Product item) { } public void Dispose() { } } }