Advertisement
Guest User

Untitled

a guest
Aug 14th, 2019
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. [TestMethod]
  2. public void GetAll_Than_Check_Count_Test()
  3. {
  4. var expected = this.MockUserRepository.GetAll().Count;
  5. Assert.IsNotNull(expected); // test not null
  6. Assert.IsTrue(expected > 0);// test GetAll returns user objects
  7. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement