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

testConnection() public method

Test Connection.
public testConnection ( ) : void
return void
    public function testConnection()
    {
        // Connect
        $this->c->connect();
        $this->assertTrue($this->c->isConnected());
        // Disconnect
        $this->c->close();
        $this->assertFalse($this->c->isConnected());
    }