public void FindByCustomerId_should_return_null_if_basket_not_found() { var basket = _sut.FindByCustomerId(_testCustomerId); basket.Should().BeNull(); }
public Basket GetBasketByCustomerId(string customerId) { return(_basketStore.FindByCustomerId(customerId)); }