2024-06-08 23:58:45 +00:00
|
|
|
<?php declare(strict_types=1);
|
|
|
|
|
|
|
|
namespace Test\Unit\Mapper;
|
|
|
|
|
|
|
|
use BitBadger\PDODocument\Mapper\CountMapper;
|
2024-06-12 21:43:17 +00:00
|
|
|
use PHPUnit\Framework\Attributes\TestDox;
|
2024-06-08 23:58:45 +00:00
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unit tests for the CountMapper class
|
|
|
|
*/
|
2024-06-12 21:43:17 +00:00
|
|
|
#[TestDox('Count Mapper (Unit tests)')]
|
2024-06-08 23:58:45 +00:00
|
|
|
class CountMapperTest extends TestCase
|
|
|
|
{
|
|
|
|
public function testMapSucceeds(): void
|
|
|
|
{
|
|
|
|
$this->assertEquals(5, (new CountMapper())->map([5, 8, 10]), 'Count not correct');
|
|
|
|
}
|
|
|
|
}
|