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