function test_xmpp_stream()
 {
     $xmpp = new XMPPStream("test@localhost", "password");
     $xmpp->connect();
     $xmpp->start_stream();
     while ($xmpp->sock->fd) {
         $xmpp->sock->recv();
     }
 }
Exemple #2
0
 public function test_xmpp_stream()
 {
     $this->markTestSkipped('Need help!');
     $xmpp = new XMPPStream("test@localhost", "password");
     $xmpp->connect();
     $xmpp->start_stream();
     while ($xmpp->sock->fd) {
         $xmpp->sock->recv();
     }
 }