public async Task AddProductToCartAsync_ThrowsExceptionIfCartDoesNotExist()
 {
     await Assert.ThrowsAsync <CartNotFoundException>(() => _service.AddProductToCartAsync(Guid.NewGuid(), null));
 }