Skip to content

Commit

Permalink
Improve tests coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
vokomarov committed Mar 25, 2023
1 parent 99f01e2 commit 95f32dd
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions tests/Feature/Bootloader/ExceptionHandlerBootloaderTest.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php

declare(strict_types=1);

namespace Tests\Feature\Bootloader;

use App\Bootloader\ExceptionHandlerBootloader;
use Tests\TestCase;

class ExceptionHandlerBootloaderTest extends TestCase
{
public function testAddRenderer(): void
{
$bootloader = $this->getContainer()->get(ExceptionHandlerBootloader::class);
$this->assertEmpty($bootloader->addRenderer());
}
}

0 comments on commit 95f32dd

Please sign in to comment.