Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
13 / 13 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
||
| 1 | <?php |
| 2 | |
| 3 | // ╔════════════════════════════════════════════════════════════╗ |
| 4 | // ║ MIT Licence (#Expat) - https://opensource.org/licenses/MIT ║ |
| 5 | // ║ Copyright 2026 Frederic Poeydomenge <dyno@phexium.com> ║ |
| 6 | // ╚════════════════════════════════════════════════════════════╝ |
| 7 | |
| 8 | declare(strict_types=1); |
| 9 | |
| 10 | pest()->group('unit'); |
| 11 | |
| 12 | use AppStarter\Homepage\Application\UseCase\HomeResponse; |
| 13 | use AppStarter\Homepage\Presentation\HomeHtmlPresenter; |
| 14 | |
| 15 | describe('Presentation', function (): void { |
| 16 | it('maps greeting and formats date', function (): void { |
| 17 | $response = new HomeResponse( |
| 18 | greeting: 'Welcome to Phexium!', |
| 19 | currentDateTime: new DateTimeImmutable('2026-03-01 14:05:30') |
| 20 | ); |
| 21 | |
| 22 | $viewModel = new HomeHtmlPresenter()->present($response)->getViewModel(); |
| 23 | |
| 24 | expect($viewModel->greeting)->toBe('Welcome to Phexium!') |
| 25 | ->and($viewModel->currentDateTime)->toBe('2026-03-01 14:05:30') |
| 26 | ; |
| 27 | }); |
| 28 | }); |