From 7cd087971895c784fd928f059bf2fb4bfe530a0c Mon Sep 17 00:00:00 2001 From: fezfez Date: Wed, 4 Dec 2024 13:16:58 +0100 Subject: [PATCH] remove teardown Signed-off-by: fezfez --- test/Client/UseCaseTest.php | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/test/Client/UseCaseTest.php b/test/Client/UseCaseTest.php index 3ff60d45..2b03279d 100644 --- a/test/Client/UseCaseTest.php +++ b/test/Client/UseCaseTest.php @@ -27,15 +27,11 @@ class UseCaseTest extends TestCase /** * The bast URI for this test, containing all files in the files directory * Should be set in phpunit.xml or phpunit.xml.dist - * - * @var string */ private string $baseuri; /** * Common HTTP client - * - * @var HTTPClient */ private HTTPClient $client; @@ -71,14 +67,6 @@ protected function setUp(): void } } - /** - * Clean up the test environment - */ - protected function tearDown(): void - { - $this->client = null; - } - public function testHttpGet(): void { $this->client->setMethod(Request::METHOD_GET);