Exemplo n.º 1
0
        public void GetAll_Should_Return_All_MockLstDives()
        {
            //Arrange

            //Act
            var testDives = (IList <Dive>)_DiveRepo.GetAll();

            //Assert
            Assert.AreEqual(2, testDives.Count);
        }
Exemplo n.º 2
0
 public IEnumerable <Dive> GetAll()
 {
     return(_diveRepository.GetAll());
 }