2022-01-23 18:45:55 +01:00
|
|
|
<?php
|
|
|
|
|
2022-10-07 12:56:28 +02:00
|
|
|
namespace Unit\Controller;
|
2022-01-23 18:45:55 +01:00
|
|
|
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
*
|
|
|
|
*/
|
2022-10-08 10:45:39 +02:00
|
|
|
class NameserverControllerTest extends BindApiControllerTest
|
2022-01-23 18:45:55 +01:00
|
|
|
{
|
|
|
|
public function setUp(): void
|
|
|
|
{
|
|
|
|
//$this->fixture =
|
|
|
|
}
|
2022-10-08 10:45:39 +02:00
|
|
|
|
|
|
|
|
2022-01-23 18:45:55 +01:00
|
|
|
public function tearDown(): void
|
|
|
|
{
|
2022-10-08 10:45:39 +02:00
|
|
|
|
2022-01-23 18:45:55 +01:00
|
|
|
}
|
2022-10-08 10:45:39 +02:00
|
|
|
|
|
|
|
|
2022-01-23 18:45:55 +01:00
|
|
|
public function testUpdate()
|
|
|
|
{
|
2022-10-08 10:45:39 +02:00
|
|
|
self::assertEquals(expected: true, actual: true);
|
2022-01-23 18:45:55 +01:00
|
|
|
}
|
|
|
|
}
|