15 lines
289 B
PHP
15 lines
289 B
PHP
<?php
|
|
|
|
namespace App\Tests;
|
|
|
|
class CommodityTest extends ApiTestCase
|
|
{
|
|
public function testSomething(): void
|
|
{
|
|
$response = static::createClient()->request('GET', '/');
|
|
|
|
$this->assertResponseIsSuccessful();
|
|
$this->assertJsonContains(['@id' => '/']);
|
|
}
|
|
}
|