From 45a5c05da6303473fa2489fd41625e58d67605b6 Mon Sep 17 00:00:00 2001 From: terrafrost Date: Sun, 21 Dec 2014 09:54:44 -0600 Subject: [PATCH] Tests: rename tests so that they actually run --- tests/Unit/Crypt/{DES.php => DESTest.php} | 2 +- tests/Unit/Crypt/{RC2.php => RC2Test.php} | 2 +- tests/Unit/Crypt/{RC4.php => RC4Test.php} | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) rename tests/Unit/Crypt/{DES.php => DESTest.php} (98%) rename tests/Unit/Crypt/{RC2.php => RC2Test.php} (98%) rename tests/Unit/Crypt/{RC4.php => RC4Test.php} (99%) diff --git a/tests/Unit/Crypt/DES.php b/tests/Unit/Crypt/DESTest.php similarity index 98% rename from tests/Unit/Crypt/DES.php rename to tests/Unit/Crypt/DESTest.php index 9ae77c03..0d7009e6 100644 --- a/tests/Unit/Crypt/DES.php +++ b/tests/Unit/Crypt/DESTest.php @@ -9,7 +9,7 @@ require_once 'Crypt/DES.php'; // the AES tests establish the correctness of the modes of operation. this test is inteded to establish the consistency of // key and iv padding between the multiple engines -class Unit_Crypt_DES_TestCase extends PhpseclibTestCase +class Unit_Crypt_DESTest extends PhpseclibTestCase { public function testEncryptPadding() { diff --git a/tests/Unit/Crypt/RC2.php b/tests/Unit/Crypt/RC2Test.php similarity index 98% rename from tests/Unit/Crypt/RC2.php rename to tests/Unit/Crypt/RC2Test.php index 533239e3..fb70ce31 100644 --- a/tests/Unit/Crypt/RC2.php +++ b/tests/Unit/Crypt/RC2Test.php @@ -8,7 +8,7 @@ require_once 'Crypt/RC2.php'; // this test is just confirming RC2's key expansion -class Unit_Crypt_RC2_TestCase extends PhpseclibTestCase +class Unit_Crypt_RC2Test extends PhpseclibTestCase { public function testEncryptPadding() { diff --git a/tests/Unit/Crypt/RC4.php b/tests/Unit/Crypt/RC4Test.php similarity index 99% rename from tests/Unit/Crypt/RC4.php rename to tests/Unit/Crypt/RC4Test.php index 47021810..11809d72 100644 --- a/tests/Unit/Crypt/RC4.php +++ b/tests/Unit/Crypt/RC4Test.php @@ -7,7 +7,7 @@ require_once 'Crypt/RC4.php'; -class Unit_Crypt_RC4_TestCase extends PhpseclibTestCase +class Unit_Crypt_RC4Test extends PhpseclibTestCase { public function engineVectors() {