Skip to content

Commit f71789a

Browse files
committed
Update IsoFileTest.php
1 parent beace21 commit f71789a

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/IsoFileTest.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,13 @@
55
namespace PhpIso\Test;
66

77
use PHPUnit\Framework\TestCase;
8+
use PhpIso\IsoFile;
89

910
class IsoFileTest extends TestCase
1011
{
12+
public function testConstructor(): void
13+
{
14+
$isoFile = new IsoFile();
15+
$this->assertInstanceOf(IsoFile::class, $isoFile);
16+
}
1117
}

0 commit comments

Comments
 (0)