Nats\tests\Unit\ConnectionTest::testReconnect PHP Метод

testReconnect() публичный Метод

Test Reconnect command.
public testReconnect ( ) : void
Результат void
    public function testReconnect()
    {
        $this->c->reconnect();
        $count = $this->c->reconnectsCount();
        $this->assertInternalType('int', $count);
        $this->assertGreaterThan(0, $count);
        $this->c->close();
    }