Skip to content

Commit

Permalink
add test method for coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
DjordyKoert committed Jan 17, 2025
1 parent efdf2b6 commit 58ffc76
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@ protected static function createKernel(array $options = []): KernelInterface
return new TestKernel(TestKernel::USE_TYPE_INFO);
}

/**
* @dataProvider provideFixtures
*/
public function testItDescribes(string $class, ?string $fixtureDir = null): void
{
parent::testItDescribes($class, $fixtureDir);
}

public static function provideFixtures(): \Generator
{
/*
Expand Down

0 comments on commit 58ffc76

Please sign in to comment.