pay/tests/TestCase.php

20 lines
291 B
PHP
Raw Normal View History

2018-01-02 22:22:35 +08:00
<?php
namespace Yansongda\Pay\Tests;
2018-03-28 14:59:17 +08:00
use Mockery;
2018-01-02 22:22:35 +08:00
use PHPUnit\Framework\TestCase as PHPUnitTestCase;
class TestCase extends PHPUnitTestCase
{
2018-03-28 14:59:17 +08:00
public function setUp()
{
Mockery::globalHelpers();
}
public function tearDown()
{
Mockery::close();
}
2018-01-02 22:22:35 +08:00
}