예제 #1
0
파일: ClientTest.php 프로젝트: thefox/imapd
 public function testGetIpPort1()
 {
     $client = new Client();
     $client->setIp('192.168.241.21');
     $client->setPort(1024);
     $this->assertEquals('192.168.241.21:1024', $client->getIpPort());
 }