phpseclib/tests/Unit/Math/BigInteger/GMPTest.php
Jack Worman 574953061a PSR4 for tests and added fall-through for switches
PSR4 for tests and added fall-through for switches
2022-02-27 01:26:31 -06:00

33 lines
769 B
PHP

<?php
/**
* @author Andreas Fischer <bantu@phpbb.com>
* @copyright 2013 Andreas Fischer
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/
namespace phpseclib3\Tests\Unit\Math\BigInteger;
use phpseclib3\Math\BigInteger\Engines\GMP;
class GMPTest extends 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 'phpseclib3\Math\BigInteger\Engines\GMP';
}
}