Dumplie\Inventory\Tests\Unit\Application\InMemory\RemoveProductFromStockTest::test_that_remove_product_with_given_sku_from_stock PHP Method

test_that_remove_product_with_given_sku_from_stock() public method

    public function test_that_remove_product_with_given_sku_from_stock()
    {
        $this->removeProductFromStockHandler->handle(new RemoveProductFromStock('dumplie_sku_1'));
        $product = $this->products->getBySku(new SKU('dumplie_sku_1'));
        $this->assertEquals(new Product(new SKU('dumplie_sku_1'), Price::fromInt(2000, 'EUR'), false), $product);
    }