pay/tests/TestCase.php
yansongda b24bfa59a8 test
2018-03-28 14:59:17 +08:00

20 lines
291 B
PHP

<?php
namespace Yansongda\Pay\Tests;
use Mockery;
use PHPUnit\Framework\TestCase as PHPUnitTestCase;
class TestCase extends PHPUnitTestCase
{
public function setUp()
{
Mockery::globalHelpers();
}
public function tearDown()
{
Mockery::close();
}
}