diff --git a/tests/Service/Auth/AuthCryptoGatewayTest.php b/tests/Service/Auth/AuthCryptoGatewayTest.php deleted file mode 100644 index e1e9c77..0000000 --- a/tests/Service/Auth/AuthCryptoGatewayTest.php +++ /dev/null @@ -1,34 +0,0 @@ -gateway = new AuthCryptoGateway(); - } - - public function testIsConfiguredReturnsTrueWhenKeyIsSet(): void - { - self::assertTrue($this->gateway->isConfigured()); - } - - public function testEncryptDecryptDelegatesToCrypto(): void - { - $plaintext = 'auth-secret'; - $encrypted = $this->gateway->encryptString($plaintext); - - self::assertNotSame($plaintext, $encrypted); - self::assertSame($plaintext, $this->gateway->decryptString($encrypted)); - } -} diff --git a/tests/Service/Settings/SettingsCryptoGatewayTest.php b/tests/Service/Settings/SettingsCryptoGatewayTest.php deleted file mode 100644 index b57e72f..0000000 --- a/tests/Service/Settings/SettingsCryptoGatewayTest.php +++ /dev/null @@ -1,32 +0,0 @@ -encryptString($plaintext); - - self::assertNotSame($plaintext, $encrypted); - self::assertSame($plaintext, $gateway->decryptString($encrypted)); - } -}