| 1 | <?php |
||
| 9 | abstract class BowerphpTestCase extends TestCase |
||
| 10 | { |
||
| 11 | /** |
||
| 12 | * @param \Mockery\MockInterface |
||
| 13 | */ |
||
| 14 | protected $filesystem; |
||
| 15 | |||
| 16 | /** |
||
| 17 | * XXX this is indeed a GithubClient, it should be renamed here and in all tests |
||
| 18 | * |
||
| 19 | * @param \Mockery\MockInterface |
||
| 20 | */ |
||
| 21 | protected $httpClient; |
||
| 22 | |||
| 23 | protected function setUp() |
||
| 28 | |||
| 29 | protected function tearDown() |
||
| 37 | |||
| 38 | /** |
||
| 39 | * @param string $class |
||
| 40 | * @param string $name |
||
| 41 | * @return ReflectionMethod |
||
| 42 | */ |
||
| 43 | protected function getMethod($class, $name) |
||
| 51 | } |
||
| 52 |