for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bowerphp\Test;
use Mockery;
use PHPUnit\Framework\TestCase;
use ReflectionClass;
abstract class BowerphpTestCase extends TestCase
{
/**
* @param \Mockery\MockInterface
*/
protected $filesystem;
* XXX this is indeed a GithubClient, it should be renamed here and in all tests
*
protected $httpClient;
protected function setUp()
$this->filesystem = Mockery::mock('Bowerphp\Util\Filesystem');
$this->httpClient = Mockery::mock('Github\Client');
}
protected function tearDown()
// this is to make Mockery assertion count as PHPUnit assertion, avoiding "risky"
if (!is_null($container = Mockery::getContainer())) {
$this->addToAssertionCount($container->mockery_getExpectationCount());
Mockery::close();
* @param string $class
* @param string $name
* @return ReflectionMethod
protected function getMethod($class, $name)
$class = new ReflectionClass($class);
$method = $class->getMethod($name);
$method->setAccessible(true);
return $method;