28 lines
603 B
PHP
28 lines
603 B
PHP
<?php
|
|
|
|
/*
|
|
* This file is part of JSON-API.
|
|
*
|
|
* (c) Toby Zerner <toby.zerner@gmail.com>
|
|
*
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Tobyz\Tests\JsonApiServer\unit;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class JsonApiTest extends TestCase
|
|
{
|
|
public function test_error_converts_error_provider_to_json_api_response()
|
|
{
|
|
$this->markTestIncomplete();
|
|
}
|
|
|
|
public function test_error_converts_non_error_provider_to_internal_server_error()
|
|
{
|
|
$this->markTestIncomplete();
|
|
}
|
|
}
|