Amal_Udjir/tests/Functional/DatabaseTest.php

18 lines
321 B
PHP
Raw Normal View History

2025-04-22 03:10:07 +00:00
<?php
namespace Tests\Functional;
use Tests\Support\FunctionalTester;
use Illuminate\Support\Facades\DB;
use PHPUnit\Framework\Assert; // Import assert dari PHPUnit
class DatabaseTest extends \Codeception\Test\Unit
{
protected FunctionalTester $tester;
public function testSomeFeature()
{
}
}