get overall coverage to 76%

This commit is contained in:
Dennis Eichhorn 2021-10-24 13:18:08 +02:00
parent 1f374d4cbf
commit af88d14f98
2 changed files with 0 additions and 84 deletions

View File

@ -1,42 +0,0 @@
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package tests
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
namespace Modules\Tag\tests\Models;
use Modules\Tag\Models\NullTag;
/**
* @internal
*/
final class Null extends \PHPUnit\Framework\TestCase
{
/**
* @covers Modules\Tag\Models\NullTag
* @group framework
*/
public function testNull() : void
{
self::assertInstanceOf('\Modules\Tag\Models\Tag', new NullTag());
}
/**
* @covers Modules\Tag\Models\NullTag
* @group framework
*/
public function testId() : void
{
$null = new NullTag(2);
self::assertEquals(2, $null->getId());
}
}

View File

@ -1,42 +0,0 @@
<?php
/**
* Orange Management
*
* PHP Version 8.0
*
* @package tests
* @copyright Dennis Eichhorn
* @license OMS License 1.0
* @version 1.0.0
* @link https://orange-management.org
*/
declare(strict_types=1);
namespace Modules\Tag\tests\Models;
use Modules\Tag\Models\NullTagL11n;
/**
* @internal
*/
final class Null extends \PHPUnit\Framework\TestCase
{
/**
* @covers Modules\Tag\Models\NullTagL11n
* @group framework
*/
public function testNull() : void
{
self::assertInstanceOf('\Modules\Tag\Models\TagL11n', new NullTagL11n());
}
/**
* @covers Modules\Tag\Models\NullTagL11n
* @group framework
*/
public function testId() : void
{
$null = new NullTagL11n(2);
self::assertEquals(2, $null->getId());
}
}