json-api-server/tests/feature/RelationshipLinkageTest.php

40 lines
832 B
PHP

<?php
/*
* This file is part of tobyz/json-api-server.
*
* (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\feature;
use Tobyz\Tests\JsonApiServer\AbstractTestCase;
class RelationshipLinkageTest extends AbstractTestCase
{
public function setUp(): void
{
}
public function test_to_one_relationships_do_not_show_linkage_by_default()
{
$this->markTestIncomplete();
}
public function test_to_one_relationship_linkage_can_be_enabled()
{
$this->markTestIncomplete();
}
public function test_to_one_relationships_linkage_can_be_re_disabled()
{
$this->markTestIncomplete();
}
// to_many...
}