php-bitpay-client/tests/Bitpay/Math/MathTest.php
2014-11-14 11:39:16 -05:00

17 lines
320 B
PHP

<?php
/**
* @license Copyright 2011-2014 BitPay Inc., MIT License
* see https://github.com/bitpay/php-bitpay-client/blob/master/LICENSE
*/
namespace Bitpay\Math;
class MathTest extends \PHPUnit_Framework_TestCase
{
public function testIsEngineSet()
{
$engine = new Math();
$this->assertNotNull($engine);
}
}