mirror of
https://github.com/phpseclib/phpseclib.git
synced 2024-11-05 13:07:53 +00:00
21 lines
575 B
PHP
21 lines
575 B
PHP
<?php
|
|
/**
|
|
* @author Andreas Fischer <bantu@phpbb.com>
|
|
* @copyright 2013 Andreas Fischer
|
|
* @license http://www.opensource.org/licenses/mit-license.html MIT License
|
|
*/
|
|
|
|
class Unit_Math_BigInteger_GMPTest extends Unit_Math_BigInteger_TestCase
|
|
{
|
|
static public function setUpBeforeClass()
|
|
{
|
|
if (!extension_loaded('gmp')) {
|
|
self::markTestSkipped('GNU Multiple Precision (GMP) extension is not available.');
|
|
}
|
|
|
|
parent::setUpBeforeClass();
|
|
|
|
self::ensureConstant('MATH_BIGINTEGER_MODE', MATH_BIGINTEGER_MODE_GMP);
|
|
}
|
|
}
|