rename MonoAlphabeticCipher and move tests for the same into Ciphers tests

This commit is contained in:
Brandon Johnson 2022-07-31 22:27:10 -06:00
parent 11e22b312f
commit 925178d263
2 changed files with 2 additions and 1 deletions

View File

@ -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
{