DragonBe\Test\Vies\HeartBeatTest::testCanSetPort PHP Method

testCanSetPort() public method

public testCanSetPort ( )
    public function testCanSetPort()
    {
        $port = 443;
        $hb = new HeartBeat();
        $hb->setPort($port);
        $this->assertSame($port, $hb->getPort());
    }