Files
awd/vendor/symfony/maker-bundle/templates/test/ApiTestCase.tpl.php
2025-09-30 09:35:59 +01:00

17 lines
348 B
PHP

<?= "<?php\n" ?>
namespace <?= $namespace; ?>;
use <?= $api_test_case_fqcn; ?>;
class <?= $class_name ?> extends ApiTestCase
{
public function testSomething(): void
{
$response = static::createClient()->request('GET', '/');
$this->assertResponseIsSuccessful();
$this->assertJsonContains(['@id' => '/']);
}
}