| 1 | <?php |
||
| 19 | class ClientManagerTest extends \PHPUnit_Framework_TestCase |
||
| 20 | { |
||
| 21 | public function testGetClient() |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @expectedException \InvalidArgumentException |
||
| 31 | */ |
||
| 32 | public function testGetClientWithoutRegisteredClients() |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @expectedException \InvalidArgumentException |
||
| 41 | */ |
||
| 42 | public function testGetClientWithNonExistingClient() |
||
| 47 | |||
| 48 | private function createManager(array $clients) |
||
| 52 | |||
| 53 | private function createClientMock() |
||
| 59 | } |
||
| 60 |