/// <summary> ///A test for GetAll ///</summary> public void GetAllTestHelper <T>() where T : class { RepositoryMock <T> target = new RepositoryMock <T>(); // TODO: Initialize to an appropriate value List <T> expected = null; // TODO: Initialize to an appropriate value List <T> actual; actual = target.GetAll(); Assert.AreEqual(expected, actual); Assert.Inconclusive("Verify the correctness of this test method."); }