1
0
mirror of https://github.com/danog/math.git synced 2025-01-23 06:01:25 +01:00
math/tests/BigDecimal/NativeTest.php
2014-08-31 14:24:10 +02:00

21 lines
370 B
PHP

<?php
namespace Brick\Math\Tests\BigDecimal;
use Brick\Math\Tests\BigDecimalTest;
use Brick\Math\Internal\Calculator\NativeCalculator;
/**
* Runs the BigDecimal tests using the native calculator.
*/
class NativeTest extends BigDecimalTest
{
/**
* @inheritdoc
*/
public function getCalculator()
{
return new NativeCalculator();
}
}