FIX bug due changes Data_SQL

This commit is contained in:
sparkyx 2025-05-18 15:31:02 +02:00
parent 8befe04534
commit 70bae8b1b7
17 changed files with 116 additions and 39 deletions

View file

@ -1,41 +0,0 @@
<?php
use PHPUnit\Framework\TestCase;
/**
* Generated by PHPUnit_SkeletonGenerator on 2016-02-11 at 15:41:40.
*/
class DatabaseTest extends TestCase
{
/**
* @var Database
*/
protected $object;
/**
* Sets up the fixture, for example, opens a network connection.
* This method is called before a test is executed.
*/
protected function setUp():void
{
$this->object=new Database(DOSSIER);
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
protected function tearDown():void
{
}
public function testDatabase()
{
$this->assertEquals(DBVERSION,$this->object->get_version(),"check Version");
}
}