guillermoandrae /
php-highrise-api
| 1 | <?php |
||
| 2 | |||
| 3 | namespace GuillermoandraeTest\Highrise\Client; |
||
| 4 | |||
| 5 | use BadMethodCallException; |
||
| 6 | use Guillermoandrae\Highrise\Client\Client; |
||
| 7 | use PHPUnit\Framework\TestCase; |
||
| 8 | |||
| 9 | class ClientTest extends TestCase |
||
| 10 | { |
||
| 11 | public function testInvalidResource() |
||
| 12 | { |
||
| 13 | $this->expectException(BadMethodCallException::class); |
||
| 14 | (new Client())->you(); |
||
|
0 ignored issues
–
show
Bug
introduced
by
Loading history...
|
|||
| 15 | } |
||
| 16 | } |
||
| 17 |