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')); } }