EF Context と Testenity があるので、次のテストを実行したいと考えています。
TestEntity testEntity = new TestEntity() { Name = "Hello World" };
context.TestEntities.AddObject(testEntity);
// missing Code
Assert.AreEqual(1, context.TestEntities.Count(), "Entity not in context!");
SaveChanges() で動作することはわかっていますが、エンティティをdatasourceに保存したくありません。