diff --git a/src/DSV/DSV.php b/src/DSV/DSV.php index 80da17d..00211ab 100644 --- a/src/DSV/DSV.php +++ b/src/DSV/DSV.php @@ -2,7 +2,7 @@ namespace DSV; -class DSV +abstract class DSV { /** * @var non-empty-string diff --git a/tests/DSV/DSVTest.php b/tests/DSV/DSVTest.php deleted file mode 100644 index 0e3347e..0000000 --- a/tests/DSV/DSVTest.php +++ /dev/null @@ -1,22 +0,0 @@ -assertEquals("\x1F", $dsv->delimiter); - } - - public function testSeparator(): void - { - $dsv = new DSV(); - $this->assertEquals("\x1E", $dsv->recordSeparator); - } -}