Lines Matching +full:server +full:-
13 protected $server; variable in dokuwiki\\test\\Remote\\JsonRpcServerTest
24 $this->server = new JsonRpcServer();
38 $response = json_encode($this->server->serve($positional)['result']);
39 $this->assertJsonStringEqualsJsonString($expect, $response);
41 $response = json_encode($this->server->serve($named)['result']);
42 $this->assertJsonStringEqualsJsonString($expect, $response);
55 $response = json_encode($this->server->serve($positional)['result']);
56 $this->assertJsonStringEqualsJsonString($expect, $response);
58 $response = json_encode($this->server->serve($named)['result']);
59 $this->assertJsonStringEqualsJsonString($expect, $response);
74 $response = json_encode($this->server->serve('[]')['result']);
75 $this->assertJsonStringEqualsJsonString($expect, $response);