Beispiel #1
0
 /**
  * Sets up the fixture, for example, opens a network connection.
  * This method is called before a test is executed.
  */
 protected function setUp()
 {
     $this->object = SqlFactory::load(include __DIR__ . '/../assets/sql/pgsql.php');
     $schema = file_get_contents(__DIR__ . '/../assets/sql/pgsql-schema.sql');
     $this->object->query($schema);
 }