Remove old tests

This commit is contained in:
2023-05-25 14:17:49 +01:00
parent 2b1c7b9c12
commit 9983121cbb

View File

@@ -47,24 +47,6 @@ class IconExtensionTest extends TestCase
$this->assertInstanceOf(IconExtension::class, $this->icon);
}
public function testThrowsIfDirectoriesIsEmpty(): void
{
$this->expectException(\InvalidArgumentException::class);
new IconExtension([], self::PALLETES);
}
public function testThrowsIfDirectoriesContainsNonString(): void
{
$this->expectException(\TypeError::class);
new IconExtension([99], self::PALLETES);
}
public function testThrowsIfDirectoriesContainsNonStringAmongStrings(): void
{
$this->expectException(\TypeError::class);
new IconExtension(['string', 99, 'string'], self::PALLETES);
}
public function testThrowsWhenPassedAnInvalidIconName(): void
{
$this->expectException(IconNotFound::class);