예제 #1
0
파일: ImapTest.php 프로젝트: lortnus/zf1
 public function testCapability()
 {
     $protocol = new Zend_Mail_Protocol_Imap($this->_params['host']);
     $protocol->login($this->_params['user'], $this->_params['password']);
     $capa = $protocol->capability();
     $this->assertTrue(is_array($capa));
     $this->assertEquals($capa[0], 'CAPABILITY');
 }