コード例 #1
0
 public function testMixedParams()
 {
     $this->operation->setUri('bar{?limit,fields}');
     $this->operation->addParam(new Parameter(array('name' => 'limit', 'location' => 'uri', 'required' => false)));
     $this->operation->addParam(new Parameter(array('name' => 'fields', 'location' => 'uri', 'required' => true)));
     $this->command['fields'] = array('id', 'name');
     $request = $this->serializer->prepare($this->command);
     $this->assertEquals('http://foo.com/baz/bar?fields=' . urlencode('id,name'), (string) $request->getUrl());
 }