Nats\tests\Unit\ConnectionTest::testReconnect PHP Method

testReconnect() public method

Test Reconnect command.
public testReconnect ( ) : void
return void
    public function testReconnect()
    {
        $this->c->reconnect();
        $count = $this->c->reconnectsCount();
        $this->assertInternalType('int', $count);
        $this->assertGreaterThan(0, $count);
        $this->c->close();
    }