13 lines
308 B
PHP
13 lines
308 B
PHP
<?php
|
|
// tests/ApplicationTest.php
|
|
use PHPUnit\Framework\TestCase;
|
|
use App\Application;
|
|
|
|
class ApplicationTest extends TestCase
|
|
{
|
|
public function testApplicationCanBeCreated(): void
|
|
{
|
|
$application = new Application();
|
|
$this->assertInstanceOf(Application::class, $application);
|
|
}
|
|
} |