mirror of
https://gitee.com/yansongda/pay.git
synced 2024-12-04 21:29:29 +08:00
20 lines
291 B
PHP
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();
|
|
}
|
|
}
|