public void CreatingModelAllowsItToBeRetrieved() { var modelCount = 0; testObj.Create <DummyModel>(); foreach (var model in testObj.Get <DummyModel>()) { modelCount++; } Assert.AreEqual(1, modelCount); }