We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 636eeeb commit 635d6f0Copy full SHA for 635d6f0
tests/Feature/FeatureTestCase.php
@@ -7,8 +7,7 @@
7
use GuzzleHttp\Client;
8
use PHPUnit\Framework\TestCase;
9
10
-abstract class FeatureTestCase extends TestCase
11
-{
+abstract class FeatureTestCase extends TestCase {
12
protected static Client $client;
13
14
public function __construct(string $name) // @phpstan-ignore-line
tests/Feature/StatusCheckTest.php
@@ -6,11 +6,9 @@
6
use PHPUnit\Framework\Attributes\Test;
-final class StatusCheckTest extends FeatureTestCase
+final class StatusCheckTest extends FeatureTestCase {
#[Test]
- public function apiIsRunning(): void
- {
+ public function apiIsRunning(): void {
$response = self::$client->get('./api/status');
15
16
self::assertSame(200, $response->getStatusCode());
0 commit comments