wpdo/tests/WPDOTest.php
2023-10-27 16:29:49 +02:00

44 lines
770 B
PHP

<?php
use PhangoApp\WPDO;
use PhangoApp\PhaUtils\Utils;
use PHPUnit\Framework\TestCase;
include("vendor/autoload.php");
include("libraries/Utils.php");
Utils::load_config('config_test', 'settings');
$sql_table="CREATE TABLE table_test (
`name` VARCHAR(255) NOT NULL default '',
`last_name` VARCHAR(255) NOT NULL default '',
`type` INT NOT NULL
);";
$pdo=new WPDO('table_test', ['name', 'last_name', 'type']);
$pdo->connect();
final class WPDOTest extends TestCase {
public function testCreateTable()
{
global $pdo;
$this->assertTrue($pdo->query($sql_table));
}
/**
* @depends testCreateTable
*/
public function testDropTable()
{
global $pdo;
$this->assertTrue($pdo->query('drop table table_test'));
}
}