Exemple #1
0
        public void ShouldNotRetriveSingleInpection()
        {
            using (var context = InitAndGetDbContext())
            {
                //Arrange
                var repositori = new InspectionRepository(context);

                //Act
                Inspection result = repositori.GetSingle(o => o.Id == Guid.NewGuid());

                //Assert
                Assert.Null(result);
            }
        }