public void ShouldNotFindEagerInpections() { using (var context = InitAndGetDbContext()) { //Arrange var repositori = new InspectionRepository(context); //Act Inspection result = repositori.FindEager(Guid.NewGuid()); //Assert Assert.Null(result); } }