mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-08 23:00:58 +00:00
[constant-trickery] Turn existing BigIntegerTest into an abstract TestCase.
This commit is contained in:
parent
bbed0916cd
commit
f897e36e96
11
tests/Math/BigInteger/BigIntegerTest.php
Normal file
11
tests/Math/BigInteger/BigIntegerTest.php
Normal 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
|
||||
{
|
||||
|
||||
}
|
@ -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)
|
||||
{
|
Loading…
Reference in New Issue
Block a user