コード例 #1
0
ファイル: QueryTest.php プロジェクト: zweifisch/zf
 public function testHelper()
 {
     $request = get($this->app, '/', ['key' => 'value']);
     $this->app->get('/', function () {
         return $this->query;
     });
     $result = $request->run();
     $this->assertEquals($result->status, 200);
     $this->assertEquals($result->body, json_encode(['key' => 'value']));
 }
コード例 #2
0
ファイル: ParamsTest.php プロジェクト: zweifisch/zf
 public function testParamDocString()
 {
     $request = get($this->app, '/9', ['key' => 'value']);
     /**
      * @param int $id
      */
     $this->app->get('/:id', function ($id, $key) {
         return $this->params;
     });
     $result = $request->run();
     $this->assertEquals($result->body, json_encode(['key' => 'value', 'id' => 9]));
     $this->assertEquals($result->status, 200);
 }