for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Nip\Controllers\Tests;
use PHPUnit\Framework\TestCase;
/**
* Class AbstractTest
*/
abstract class AbstractTest extends TestCase
{
protected $object;
protected function tearDown(): void
parent::tearDown();
\Mockery::close();
}