From 925178d263103c80046cd25404217536b0ed78a4 Mon Sep 17 00:00:00 2001 From: Brandon Johnson Date: Sun, 31 Jul 2022 22:27:10 -0600 Subject: [PATCH] rename MonoAlphabeticCipher and move tests for the same into Ciphers tests --- Ciphers/{monoAlphabeticCipher.php => MonoAlphabeticCipher.php} | 0 tests/{ => Ciphers}/MonoAlphabeticCipherTest.php | 3 ++- 2 files changed, 2 insertions(+), 1 deletion(-) rename Ciphers/{monoAlphabeticCipher.php => MonoAlphabeticCipher.php} (100%) rename tests/{ => Ciphers}/MonoAlphabeticCipherTest.php (78%) diff --git a/Ciphers/monoAlphabeticCipher.php b/Ciphers/MonoAlphabeticCipher.php similarity index 100% rename from Ciphers/monoAlphabeticCipher.php rename to Ciphers/MonoAlphabeticCipher.php diff --git a/tests/MonoAlphabeticCipherTest.php b/tests/Ciphers/MonoAlphabeticCipherTest.php similarity index 78% rename from tests/MonoAlphabeticCipherTest.php rename to tests/Ciphers/MonoAlphabeticCipherTest.php index 33f0603..4509ab4 100644 --- a/tests/MonoAlphabeticCipherTest.php +++ b/tests/Ciphers/MonoAlphabeticCipherTest.php @@ -2,7 +2,8 @@ use PHPUnit\Framework\TestCase; use function PHPUnit\Framework\assertEquals; -require_once __DIR__ . '/../ciphers/monoAlphabeticCipher.php'; +require_once __DIR__ . '/../../vendor/autoload.php'; +require_once __DIR__ . '/../../Ciphers/MonoAlphabeticCipher.php'; class MonoAlphabeticCipherTest extends TestCase {