phpseclib/tests/Unit/Math/BigInteger/BCMathTest.php

35 lines
813 B
PHP
Raw Normal View History

<?php
2022-02-17 02:25:59 +00:00
/**
* @author Andreas Fischer <bantu@phpbb.com>
* @copyright 2013 Andreas Fischer
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/
2022-06-04 15:31:21 +00:00
declare(strict_types=1);
namespace phpseclib3\Tests\Unit\Math\BigInteger;
2022-01-30 15:34:42 +00:00
use phpseclib3\Math\BigInteger\Engines\BCMath;
class BCMathTest extends TestCase
{
2022-06-04 15:31:21 +00:00
public static function setUpBeforeClass(): void
{
if (!BCMath::isValidEngine()) {
self::markTestSkipped('BCMath extension is not available.');
}
BCMath::setModExpEngine('DefaultEngine');
}
2022-06-04 15:31:21 +00:00
public function getInstance($x = 0, $base = 10): BCMath
{
return new BCMath($x, $base);
}
2022-06-04 15:31:21 +00:00
public static function getStaticClass(): string
{
return 'phpseclib3\Math\BigInteger\Engines\BCMath';
}
}