Skip to content

Commit

Permalink
silence the "No tests found in class" warning.
Browse files Browse the repository at this point in the history
  • Loading branch information
BrianHenryIE committed Feb 16, 2024
1 parent 7f171f4 commit e82142a
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions tests/Unit/FileEnumeratorTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,10 @@
* @package BrianHenryIE\Strauss\Tests\Unit
* @coversDefaultClass \BrianHenryIE\Strauss\FileEnumerator
*/
class FileEnumeratorTest extends TestCase
{
class FileEnumeratorTest extends TestCase {

public function testNothing() {
// this is to silence the "No tests found in class" warning.
self::assertTrue( true );
}
}

0 comments on commit e82142a

Please sign in to comment.