mail-account-admin/tests/Unit/HelloWorldTest.php

19 lines
274 B
PHP

<?php
declare(strict_types=1);
namespace Tests\Unit;
use PHPUnit\Framework\TestCase;
/**
* @coversNothing
*/
final class HelloWorldTest extends TestCase
{
// TODO: Delete this file
public function testTrue(): void
{
$this->assertTrue(true);
}
}