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