Conditions | 1 |
Paths | 1 |
Total Lines | 7 |
Code Lines | 4 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
10 | public function testPrivateMethodRequest() |
||
11 | { |
||
12 | $response = $this->sendJsonRpcRequest(new Request('prefix/security/private', []), '/test/'); |
||
13 | |||
14 | self::assertFalse($response->isSuccessful()); |
||
15 | self::assertEquals($response->getError()->getCode(), JsonRpcError::METHOD_NOT_FOUND); |
||
16 | } |
||
17 | |||
25 |