for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Integration\Chekote\NounStore\Store;
use Chekote\NounStore\Store;
use Integration\Chekote\NounStore\TestCase;
abstract class StoreTest extends TestCase
{
/** @var Store */
protected $store;
/**
* Sets up the environment before each test.
*/
public function setUp()
$this->store = new Store();
}
* Tears down the environment after each test.
public function tearDown()
$this->store = null;