Files
newznab-tmux/tests/TestCase.php
2025-09-25 17:01:21 +02:00

11 lines
202 B
PHP

<?php
namespace Tests;
use Illuminate\Foundation\Testing\TestCase as BaseTestCase;
abstract class TestCase extends BaseTestCase
{
use CreatesApplication; // Boot Laravel application for tests.
}