setUpOrderPlacer(); } /** @test */ public function it_returns_not_found_on_get_adjustment(): void { $this->loadFixturesFromFiles([ 'channel/channel.yaml', 'cart.yaml', 'country.yaml', 'shipping_method.yaml', 'payment_method.yaml', ]); $order = $this->placeOrder('token'); $this->client->request( method: 'GET', uri: '/api/v2/shop/adjustments/' . $order->getAdjustments()->first()->getId(), server: $this->headerBuilder()->withJsonLdAccept()->build(), ); $this->assertResponseStatusCodeSame(Response::HTTP_NOT_FOUND); } }