Exemplo n.º 1
0
 public static function bootstrap($moduleDir)
 {
     require_once $moduleDir . '/../../../bootstrap.php';
     //make sure error reporting is on for testing
     error_reporting(E_ALL);
     ini_set('display_errors', 1);
     // Install a fresh database.
     file_put_contents('php://stdout', "Dropping test database schema...\n");
     \Omeka\Test\DbTestCase::dropSchema();
     file_put_contents('php://stdout', "Creating test database schema...\n");
     \Omeka\Test\DbTestCase::installSchema();
 }
Exemplo n.º 2
0
<?php

require '../../bootstrap.php';
//make sure error reporting is on for testing
error_reporting(E_ALL);
ini_set('display_errors', 1);
// Install a fresh database.
echo 'Dropping test database schema...' . PHP_EOL;
\Omeka\Test\DbTestCase::dropSchema();
echo 'Creating test database schema...' . PHP_EOL;
\Omeka\Test\DbTestCase::installSchema();