- Implemented dynamic VID retrieval from ValueSetModel for all test definitions - Aligned ResultType, RefType, and SpcType with the valueset table - Updated sample data for Hematology, Chemistry, and Urinalysis tests - Ensured consistency between ValueSetSeeder and TestSeeder data
17 lines
257 B
PHP
17 lines
257 B
PHP
<?php
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use CodeIgniter\Test\FeatureTestTrait;
|
|
use CodeIgniter\Test\CIUnitTestCase;
|
|
|
|
class SimpleTest extends CIUnitTestCase
|
|
{
|
|
use FeatureTestTrait;
|
|
|
|
public function testTrue()
|
|
{
|
|
$this->assertTrue(true);
|
|
}
|
|
}
|