public async Task All_large_machines(int?productTypeId) { // Arrange var count = 3; // Act var searchResult = await _coffeeService.SearchCoffeeMachines(productTypeId, null, null, CancellationToken.None); // Assert Check.That(searchResult.Data.Count()).IsEqualTo(count); }