fembooru/ext/json_rpc/test.php

13 lines
318 B
PHP
Raw Normal View History

2020-11-15 11:57:14 +00:00
<?php declare(strict_types=1);
class JsonRpcTest extends ShimmiePHPUnitTestCase
{
public function testEcho()
{
$evt = new ApiRequestEvent("echo", ["foo"=>"bar"], 1);
send_event($evt);
$this->assertEquals(1, $evt->id);
$this->assertEquals(["foo"=>"bar"], $evt->result);
}
}