$productId = Uuid::
randomHex();
$product =
[ 'id' =>
$productId,
'name' => 'Test product',
'productNumber' => '123456789',
'stock' => 1,
'price' =>
[ ['currencyId' => Defaults::CURRENCY, 'gross' => 19.99, 'net' => 10, 'linked' => false
],
],
'manufacturer' =>
['id' =>
$productId, 'name' => 'shopware AG'
],
'tax' =>
['id' =>
$this->
getValidTaxId(), 'name' => 'testTaxRate', 'taxRate' => 15
],
'categories' =>
[ ['id' =>
$productId, 'name' => 'Test category'
],
],
'visibilities' =>
[ [ 'id' =>
$productId,
'salesChannelId' => TestDefaults::SALES_CHANNEL,
'visibility' => ProductVisibilityDefinition::VISIBILITY_ALL,
],
],
];