[constant-trickery] Add PhpseclibTestCase. No longer use PHPUnit directly.

This commit is contained in:
Andreas Fischer 2013-01-12 02:34:20 +01:00
parent f897e36e96
commit 2c3b165556
4 changed files with 14 additions and 3 deletions

View File

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

View File

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

View File

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

View File

@ -0,0 +1,11 @@
<?php
/**
* @author Andreas Fischer <bantu@phpbb.com>
* @copyright MMXIII Andreas Fischer
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/
abstract class PhpseclibTestCase extends PHPUnit_Framework_TestCase
{
}