aboutsummaryrefslogtreecommitdiffhomepage
path: root/services/app/tests/AppTest.php
blob: e6aa1c81024cc731a8328502e7ed7c8c47f90726 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

declare(strict_types=1);

use PHPUnit\Framework\TestCase;

final class AppTest extends TestCase
{
    public function testApp(): void
    {
        $this->assertTrue(true);
    }
}