for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php declare(strict_types = 1);
namespace Simplex\Quickstart\Shared\Testing;
use Helmich\Psr7Assert\Psr7Assertions;
use Mockery as m;
use PHPUnit\Framework\TestCase;
abstract class UnitTest extends TestCase
{
use Psr7Assertions;
protected function tearDown()
m::close();
parent::tearDown();
}