mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-09 23:31:00 +00:00
30 lines
759 B
PHP
30 lines
759 B
PHP
<?php
|
|
/**
|
|
* @author Andreas Fischer <bantu@phpbb.com>
|
|
* @copyright 2013 Andreas Fischer
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
*/
|
|
|
|
use \phpseclib\Math\BigInteger\Engines\GMP;
|
|
|
|
class Unit_Math_BigInteger_GMPTest extends Unit_Math_BigInteger_TestCase
|
|
{
|
|
public static function setUpBeforeClass()
|
|
{
|
|
if (!GMP::isValidEngine()) {
|
|
self::markTestSkipped('GNU Multiple Precision (GMP) extension is not available.');
|
|
}
|
|
GMP::setModExpEngine('DefaultEngine');
|
|
}
|
|
|
|
public function getInstance($x = 0, $base = 10)
|
|
{
|
|
return new GMP($x, $base);
|
|
}
|
|
|
|
public static function getStaticClass()
|
|
{
|
|
return 'phpseclib\Math\BigInteger\Engines\GMP';
|
|
}
|
|
}
|