aboutsummaryrefslogtreecommitdiff
path: root/tests/Unit/ExampleTest.php
blob: 5773b0ceb771e176520d5a9c1efe5e918878318d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

namespace Tests\Unit;

use PHPUnit\Framework\TestCase;

class ExampleTest extends TestCase
{
    /**
     * A basic test example.
     */
    public function test_that_true_is_true(): void
    {
        $this->assertTrue(true);
    }
}