1
0
mirror of https://github.com/danog/math.git synced 2025-01-23 06:01:25 +01:00
math/tests/BigInteger/NativeTest.php

21 lines
370 B
PHP
Raw Normal View History

2014-08-31 12:13:46 +00:00
<?php
namespace Brick\Math\Tests\BigInteger;
2014-08-31 12:13:46 +00:00
use Brick\Math\Tests\BigIntegerTest;
2014-08-31 12:13:46 +00:00
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();
}
}