public function testConnectionToStringReturnsHeaderFormattedString()
 {
     $this->markTestIncomplete('Connection needs to be completed');
     $connectionHeader = new Connection();
     $connectionHeader->setValue('close');
     $this->assertEmpty('Connection: close', $connectionHeader->toString());
 }
Exemple #2
0
 public function testConnectionToStringReturnsHeaderFormattedString()
 {
     $this->markTestIncomplete('Connection needs to be completed');
     $connectionHeader = new Connection();
     // @todo set some values, then test output
     $this->assertEmpty('Connection: xxx', $connectionHeader->toString());
 }