public function setUp()
 {
     parent::setUp();
     $client = $this->createClient('connect');
     $client->connect();
     if ($client->getTransport()->getProtocolVersion() < 26) {
         $this->markTestSkipped();
     }
 }
Example #2
0
 public function setUp()
 {
     $this->markTestSkipped();
     //Test disabled because Protocol does not works on Token ( wrong documentation )
     parent::setUp();
     $client = $this->createClient('connect');
     $client->connect();
     if ($client->getTransport()->getProtocolVersion() < 26) {
         $this->markTestSkipped();
     }
 }
Example #3
0
 public function tearDown()
 {
     parent::tearDown();
 }