blob: 0d2455e94d36c520a99398c4b930f7acd242cf49 [file] [log] [blame]
atoulmeb80b4682009-01-22 13:08:36 +00001<?php
2/*******************************************************************************
3 * Copyright (c) 2007-2009 Intalio, Inc.
4 * All rights reserved. This program and the accompanying materials
5 * are made available under the terms of the Eclipse Public License v1.0
6 * which accompanies this distribution, and is available at
7 * http://www.eclipse.org/legal/epl-v10.html
8 *
9 * Contributors:
10 * Antoine Toulme, Intalio Inc.
11*******************************************************************************/
12// this file should be included in the spec files.
13// it will open a connection to a test database.
14
15error_reporting(E_ALL);
16ini_set('display_errors', '1');
17
atoulme12882d52009-01-26 18:39:17 +000018require_once(dirname(__FILE__) . "/../classes/system/dbconnection.class.php");
atoulmeb80b4682009-01-22 13:08:36 +000019
atoulme12882d52009-01-26 18:39:17 +000020DBConnection::connect(dirname(__FILE__) . '/test.ini');
atoulmeb80b4682009-01-22 13:08:36 +000021?>