phpOMS/tests/Math/Geometry/Shape/D2/TrapezoidTest.php
2024-03-20 07:21:26 +00:00

57 lines
1.9 KiB
PHP
Executable File

<?php
/**
* Jingga
*
* PHP Version 8.2
*
* @package tests
* @copyright Dennis Eichhorn
* @license OMS License 2.0
* @version 1.0.0
* @link https://jingga.app
*/
declare(strict_types=1);
namespace phpOMS\tests\Math\Geometry\Shape\D2;
use phpOMS\Math\Geometry\Shape\D2\Trapezoid;
/**
* @internal
*/
#[\PHPUnit\Framework\Attributes\CoversClass(\phpOMS\Math\Geometry\Shape\D2\Trapezoid::class)]
#[\PHPUnit\Framework\Attributes\TestDox('phpOMS\tests\Math\Geometry\Shape\D2\TrapezoidTest: Trapezoid shape')]
final class TrapezoidTest extends \PHPUnit\Framework\TestCase
{
#[\PHPUnit\Framework\Attributes\Group('framework')]
#[\PHPUnit\Framework\Attributes\TestDox('The surface can be calculated')]
public function testSurface() : void
{
self::assertEqualsWithDelta(10, Trapezoid::getSurface(2, 3, 4), 0.001);
}
#[\PHPUnit\Framework\Attributes\Group('framework')]
#[\PHPUnit\Framework\Attributes\TestDox('The perimeter can be calculated')]
public function testPerimeter() : void
{
self::assertEqualsWithDelta(14, Trapezoid::getPerimeter(2, 3, 4, 5), 0.001);
}
#[\PHPUnit\Framework\Attributes\Group('framework')]
#[\PHPUnit\Framework\Attributes\TestDox('The height can be calculated')]
public function testHeight() : void
{
self::assertEqualsWithDelta(4, Trapezoid::getHeight(10, 2, 3), 0.001);
}
#[\PHPUnit\Framework\Attributes\Group('framework')]
#[\PHPUnit\Framework\Attributes\TestDox('The side lengths can be calculated')]
public function testSideLength() : void
{
self::assertEqualsWithDelta(2, Trapezoid::getA(10, 4, 3), 0.001);
self::assertEqualsWithDelta(3, Trapezoid::getB(10, 4, 2), 0.001);
self::assertEqualsWithDelta(4, Trapezoid::getC(14, 2, 3, 5), 0.001);
self::assertEqualsWithDelta(5, Trapezoid::getD(14, 2, 3, 4), 0.001);
}
}