Ejemplo n.º 1
0
        public void GetById_Should_Return_Correct_Dive()
        {
            // Arrange

            //Act
            Dive testDive = _DiveRepo.GetSingle(1);

            //Assert
            Assert.AreEqual(1, testDive.Id);
        }
Ejemplo n.º 2
0
 public Dive GetDive(int Id)
 {
     return(_diveRepository.GetSingle(Id));
 }