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

namespace Tests\Unit;

use PHPUnit\Framework\TestCase;

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