[constant-trickery] Turn existing BigIntegerTest into an abstract TestCase.

This commit is contained in:
Andreas Fischer 2013-01-12 02:18:41 +01:00
parent bbed0916cd
commit f897e36e96
2 changed files with 12 additions and 1 deletions

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
*/
class Math_BigInteger_BigIntegerTest extends Math_BigInteger_TestCase
{
}

View File

@ -5,7 +5,7 @@
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/
class Math_BigIntegerTest extends PHPUnit_Framework_TestCase
abstract class Math_BigInteger_TestCase extends PHPUnit_Framework_TestCase
{
public function getInstance($x = 0, $base = 10)
{