Beispiel #1
0
 public function testAllowsSimpleLocationValue()
 {
     $p = new Parameter(array('name' => 'myname', 'location' => 'foo', 'sentAs' => 'Hello'));
     $this->assertEquals('foo', $p->getLocation());
     $this->assertEquals('Hello', $p->getSentAs());
 }