for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Undemanding\Difference\Test;
use Mockery;
use PHPUnit_Framework_TestCase;
abstract class Test extends PHPUnit_Framework_TestCase
{
/**
* @inheritdoc
*/
public function tearDown()
Mockery::close();
parent::tearDown();
}