Skip to content

Commit

Permalink
[constant-trickery] Add PhpseclibTestCase. No longer use PHPUnit dire…
Browse files Browse the repository at this point in the history
…ctly.
  • Loading branch information
bantu committed Jan 12, 2013
1 parent f897e36 commit 2c3b165
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 3 deletions.
2 changes: 1 addition & 1 deletion tests/Crypt/AES/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/

abstract class Crypt_AES_TestCase extends PHPUnit_Framework_TestCase
abstract class Crypt_AES_TestCase extends PhpseclibTestCase
{
static public function setUpBeforeClass()
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Crypt/Hash/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/

abstract class Crypt_Hash_TestCase extends PHPUnit_Framework_TestCase
abstract class Crypt_Hash_TestCase extends PhpseclibTestCase
{
static public function setUpBeforeClass()
{
Expand Down
2 changes: 1 addition & 1 deletion tests/Math/BigInteger/TestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/

abstract class Math_BigInteger_TestCase extends PHPUnit_Framework_TestCase
abstract class Math_BigInteger_TestCase extends PhpseclibTestCase
{
public function getInstance($x = 0, $base = 10)
{
Expand Down
11 changes: 11 additions & 0 deletions tests/PhpseclibTestCase.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
<?php
/**
* @author Andreas Fischer <[email protected]>
* @copyright MMXIII Andreas Fischer
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/

abstract class PhpseclibTestCase extends PHPUnit_Framework_TestCase
{

}

0 comments on commit 2c3b165

Please sign in to comment.