Uploaded From CV. Swandhana Server

This commit is contained in:
Duidev Software House
2025-01-27 08:16:55 +07:00
commit 6b3be42361
15186 changed files with 2328862 additions and 0 deletions

No files matched your search

+20
View File
@@ -0,0 +1,20 @@
<?php
namespace Aranyasen\HL7\Tests;
use PHPUnit\Framework\TestCase as TC;
abstract class TestCase extends TC
{
protected function setUp(): void
{
parent::setUp();
//
}
protected function tearDown(): void
{
// Any tearDown should appear before parent::tearDown()
parent::tearDown();
}
}