示例#1
0
 /**
  * @covers Ringo\PhpRedmon\Model\Instance::getPort
  * @todo   Implement testGetPort().
  */
 public function testGetPort()
 {
     $this->assertEmpty($this->object->getPort());
     $this->object->setPort("1234");
     $this->assertEquals("1234", $this->object->getPort());
 }