for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Chekote\NounStore;
use Chekote\Phake\Phake;
use PHPUnit\Framework\TestCase as BaseTestCase;
class TestCase extends BaseTestCase
{
/**
* @before
*/
public function clearExpectations()
Phake::clearExpectations();
}
* @after
public function verifyExpectations()
Phake::verifyExpectations();