Skip to content

Commit

Permalink
QA
Browse files Browse the repository at this point in the history
  • Loading branch information
brendt committed May 2, 2024
1 parent 1368452 commit 3129ef1
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 3 deletions.
10 changes: 8 additions & 2 deletions tests/Integration/EventIntegrationTest.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
<?php

declare(strict_types=1);

namespace Tests\Tempest\Integration;

use App\Events\ItHappened;
use App\Events\MyEventHandler;
use Tests\Tempest\IntegrationTest;
use function Tempest\event;
use Tests\Tempest\IntegrationTest;

/**
* @internal
* @small
*/
class EventIntegrationTest extends IntegrationTest
{
public function test_event(): void
Expand All @@ -17,4 +23,4 @@ public function test_event(): void

$this->assertTrue(MyEventHandler::$itHappened);
}
}
}
4 changes: 3 additions & 1 deletion tests/IntegrationTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
<?php

declare(strict_types=1);

namespace Tests\Tempest;

use PHPUnit\Framework\TestCase;
Expand Down Expand Up @@ -32,4 +34,4 @@ protected function setUp(): void
$this->kernel = new Kernel($this->appConfig);
$this->container = $this->kernel->init();
}
}
}

0 comments on commit 3129ef1

Please sign in to comment.