extends from BindApiControllerTest

This commit is contained in:
tracer 2022-10-08 10:45:39 +02:00
parent 5efa996d1d
commit 620e762dfc
1 changed files with 7 additions and 7 deletions

View File

@ -7,22 +7,22 @@ use PHPUnit\Framework\TestCase;
/** /**
* *
*/ */
class NameserverControllerTest extends TestCase class NameserverControllerTest extends BindApiControllerTest
{ {
public function setUp(): void public function setUp(): void
{ {
//$this->fixture = //$this->fixture =
} }
public function tearDown(): void public function tearDown(): void
{ {
} }
public function testUpdate() public function testUpdate()
{ {
self::assertEquals(expected: true, actual: true);
} }
} }