Tests: rename tests so that they actually run

This commit is contained in:
terrafrost 2014-12-21 09:54:44 -06:00
parent 7c5e7a0a72
commit 45a5c05da6
3 changed files with 3 additions and 3 deletions

View File

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

View File

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

View File

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