Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
33 | public function testGetAsyncClient(): void |
||
34 | { |
||
35 | $loop = Factory::create(); |
||
36 | $this->bunnyManager->setLoop($loop); |
||
37 | |||
38 | $client = $this->bunnyManager->getClient(); |
||
39 | |||
40 | $this->assertInstanceOf(AsyncClient::class, $client); |
||
41 | $this->assertSame($client, $this->bunnyManager->getClient()); |
||
42 | } |
||
43 | |||
74 |