assertEquals($plainText, $decryptedText); } public function testWithNonAlphabetCharacters() { $plainText = "HELLO, WORLD!"; $encryptedText = atbash_encrypt($plainText); $decryptedText = atbash_decrypt($encryptedText); $this->assertEquals($plainText, $decryptedText); } }