add/change docs

This commit is contained in:
Dennis Eichhorn 2021-08-29 10:55:43 +02:00
parent 14d2fd16b1
commit 6ebf943e99
4 changed files with 12 additions and 0 deletions

View File

@ -42,6 +42,9 @@ class ApiControllerTest extends \PHPUnit\Framework\TestCase
protected $module = null;
/**
* {@inheritdoc}
*/
protected function setUp() : void
{
$this->app = new class() extends ApplicationAbstract

View File

@ -26,6 +26,9 @@ class DepartmentTest extends \PHPUnit\Framework\TestCase
{
private Department $department;
/**
* {@inheritdoc}
*/
protected function setUp() : void
{
$this->department = new Department();

View File

@ -26,6 +26,9 @@ class PositionTest extends \PHPUnit\Framework\TestCase
{
private Position $position;
/**
* {@inheritdoc}
*/
protected function setUp() : void
{
$this->position = new Position();

View File

@ -26,6 +26,9 @@ class UnitTest extends \PHPUnit\Framework\TestCase
{
private Unit $unit;
/**
* {@inheritdoc}
*/
protected function setUp() : void
{
$this->unit = new Unit();