From a81396241f8b2caf70988b1979e1927e5c8e9398 Mon Sep 17 00:00:00 2001 From: Greg Roach Date: Tue, 6 Dec 2022 13:36:20 +0000 Subject: Add minimal test scripts for every class, to pick up PHP version issues --- tests/app/Services/ServerCheckServiceTest.php | 35 +++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 tests/app/Services/ServerCheckServiceTest.php (limited to 'tests/app/Services/ServerCheckServiceTest.php') diff --git a/tests/app/Services/ServerCheckServiceTest.php b/tests/app/Services/ServerCheckServiceTest.php new file mode 100644 index 0000000000..338375b45b --- /dev/null +++ b/tests/app/Services/ServerCheckServiceTest.php @@ -0,0 +1,35 @@ +. + */ + +declare(strict_types=1); + +namespace Fisharebest\Webtrees\Services; + +use Fisharebest\Webtrees\TestCase; + +/** + * Test harness for the class ServerCheckService + * + * @covers Fisharebest\Webtrees\Services\ServerCheckService + */ +class ServerCheckServiceTest extends TestCase +{ + public function testClass(): void + { + $this->assertTrue(class_exists(\Fisharebest\Webtrees\Services\ServerCheckService::class)); + } +} -- cgit v1.3