18 lines
321 B
PHP
18 lines
321 B
PHP
|
|
<?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()
|
||
|
|
{
|
||
|
|
|
||
|
|
}
|
||
|
|
}
|