mirror of
https://github.com/danog/math.git
synced 2025-01-23 06:01:25 +01:00
21 lines
370 B
PHP
21 lines
370 B
PHP
<?php
|
|
|
|
namespace Brick\Math\Tests\BigInteger;
|
|
|
|
use Brick\Math\Tests\BigIntegerTest;
|
|
use Brick\Math\Internal\Calculator\NativeCalculator;
|
|
|
|
/**
|
|
* Runs the BigInteger tests using the native calculator.
|
|
*/
|
|
class NativeTest extends BigIntegerTest
|
|
{
|
|
/**
|
|
* @inheritdoc
|
|
*/
|
|
public function getCalculator()
|
|
{
|
|
return new NativeCalculator();
|
|
}
|
|
}
|