mirror of
https://github.com/ad-aures/castopod.git
synced 2026-04-04 07:19:03 +02:00
chore: update CodeIgniter to latest dev version after 4.1.6
This commit is contained in:
parent
de19317138
commit
1fc3da139e
29 changed files with 276 additions and 336 deletions
|
|
@ -4,17 +4,19 @@ declare(strict_types=1);
|
|||
|
||||
namespace Tests\Database;
|
||||
|
||||
use Tests\Support\DatabaseTestCase;
|
||||
use CodeIgniter\Test\CIUnitTestCase;
|
||||
use CodeIgniter\Test\DatabaseTestTrait;
|
||||
use Tests\Support\Database\Seeds\ExampleSeeder;
|
||||
use Tests\Support\Models\ExampleModel;
|
||||
|
||||
class ExampleDatabaseTest extends DatabaseTestCase
|
||||
class ExampleDatabaseTest extends CIUnitTestCase
|
||||
{
|
||||
protected function setUp(): void
|
||||
{
|
||||
parent::setUp();
|
||||
use DatabaseTestTrait;
|
||||
|
||||
// Extra code to run before each test
|
||||
}
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
protected $seed = ExampleSeeder::class;
|
||||
|
||||
public function testModelFindAll(): void
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue