Add some tests + phpdoc
This commit is contained in:
16
tests/FitsTest.php
Normal file
16
tests/FitsTest.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
declare(strict_types=1);
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
|
||||
final class FitsTest extends TestCase
|
||||
{
|
||||
public function testValidatesFits(): void
|
||||
{
|
||||
$fits = new Dumbastro\FitsPhp\Fits(__DIR__ . '/test_orion.fit');
|
||||
|
||||
$this->assertTrue($fits->validate());
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user