/**
  * Tests Stomp->getSessionId()
  */
 public function testGetSessionId()
 {
     $this->markTestIncomplete("This test doesn't use mocks, it tries to talk to a STOMP server");
     if (!$this->Stomp->isConnected()) {
         $this->Stomp->connect();
     }
     $this->assertNotNull($this->Stomp->getSessionId());
 }