for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mnabialek\LaravelQuickMigrations\Tests;
use Carbon\Carbon;
use Mockery;
use PHPUnit\Framework\TestCase;
class UnitTestCase extends TestCase
{
protected function tearDown()
parent::tearDown();
Mockery::close();
Carbon::setTestNow();
}