コード例 #1
0
ファイル: SmtpTest.php プロジェクト: pnaq57/zf2demo
 public function testDisconnectResetsAuthFlag()
 {
     $this->connection->connect();
     $this->connection->setSessionStatus(true);
     $this->connection->setAuth(true);
     $this->assertTrue($this->connection->getAuth());
     $this->connection->disconnect();
     $this->assertFalse($this->connection->getAuth());
 }
コード例 #2
0
ファイル: SmtpTest.php プロジェクト: pnaq57/zf2demo
 public function testDisconnectSendReconnects()
 {
     $this->assertFalse($this->connection->hasSession());
     $this->transport->send($this->getMessage());
     $this->assertTrue($this->connection->hasSession());
     $this->connection->disconnect();
     $this->assertFalse($this->connection->hasSession());
     $this->transport->send($this->getMessage());
     $this->assertTrue($this->connection->hasSession());
 }
コード例 #3
0
ファイル: SmtpTest.php プロジェクト: rajanlamic/IntTest
 public function testDisconnectCallsQuit()
 {
     $this->connection->disconnect();
     $this->assertTrue($this->connection->calledQuit);
 }