Ejemplo n.º 1
0
 public function testLocationGetFieldValueReturnsProperValue()
 {
     $locationHeader = new Location();
     $locationHeader->setUri('http://www.example.com/');
     $this->assertEquals('http://www.example.com/', $locationHeader->getFieldValue());
     $locationHeader->setUri('/path');
     $this->assertEquals('/path', $locationHeader->getFieldValue());
 }
Ejemplo n.º 2
0
    public function testLocationGetFieldValueReturnsProperValue()
    {
        $this->markTestIncomplete('Location needs to be completed');

        $locationHeader = new Location();
        $this->assertEquals('xxx', $locationHeader->getFieldValue());
    }