From 0b5bebc2af2b8f4e24f151317b2f1fa7a77048ec Mon Sep 17 00:00:00 2001 From: brabli <67018167+brabli@users.noreply.github.com> Date: Thu, 27 Nov 2025 15:17:22 +0000 Subject: [PATCH] Remove unneeded test --- tests/Config/ConfigurationTest.php | 45 ------------------------------ 1 file changed, 45 deletions(-) delete mode 100644 tests/Config/ConfigurationTest.php diff --git a/tests/Config/ConfigurationTest.php b/tests/Config/ConfigurationTest.php deleted file mode 100644 index a5e3325..0000000 --- a/tests/Config/ConfigurationTest.php +++ /dev/null @@ -1,45 +0,0 @@ -configuration = new Configuration(true); - $this->processor = new Processor(); - } - - public function testThrowsIfNameIsEmpty() - { - $config = $this->getValidConfig(); - $config['name'] = ''; - $this->expectException(\Exception::class); - $this->validateConfig($config); - } - - private function validateConfig(array $config): array - { - return $this->processor->processConfiguration($this->configuration, [$config]); - } - - private function getValidConfig(): array - { - return [ - 'name' => 'Boris', - ]; - } -} -