From e82142a6c6a4e6de2b568164d745fc204b35667e Mon Sep 17 00:00:00 2001 From: Brian Henry Date: Thu, 15 Feb 2024 21:08:20 -0800 Subject: [PATCH] silence the "No tests found in class" warning. --- tests/Unit/FileEnumeratorTest.php | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/tests/Unit/FileEnumeratorTest.php b/tests/Unit/FileEnumeratorTest.php index 4943e9b6..5c173c9f 100644 --- a/tests/Unit/FileEnumeratorTest.php +++ b/tests/Unit/FileEnumeratorTest.php @@ -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 ); + } }