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

25 lines
508 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
*/
namespace phpseclib3\Tests\Unit\Math\BigInteger;
2022-01-30 15:34:42 +00:00
use phpseclib3\Math\BigInteger;
class DefaultTest extends TestCase
{
public function getInstance($x = 0, $base = 10)
{
return new BigInteger($x, $base);
}
public static function getStaticClass()
{
return 'phpseclib3\Math\BigInteger';
}
}