AlternC/phpunit/lib/AlterncTest.php

36 lines
971 B
PHP
Raw Normal View History

2014-03-12 17:43:26 +00:00
<?php
/**
* This is the abstract class for all tests
* @see http://phpunit.de/manual/
*/
abstract class AlterncTest extends PHPUnit_Extensions_Database_TestCase
2014-03-12 17:43:26 +00:00
{
/**
* @return PHPUnit_Extensions_Database_DB_IDatabaseConnection
*/
public function getConnection()
{
global $database,$user,$password;
$pdo = new PDO('mysql:dbname='.$database.';host=127.0.0.1',$user,$password);
return $this->createDefaultDBConnection($pdo);
}
/**
*
* @param type $file_name
* @return \PHPUnit_Extensions_Database_DataSet_YamlDataSet
* @throws \Exception
*/
public function loadDataSet($file_name)
{
$file = PHPUNIT_DATASETS_PATH."/$file_name";
if( !is_file($file) ){
throw new \Exception("missing $file");
}
$dataSet = new PHPUnit_Extensions_Database_DataSet_YamlDataSet($file);
return $dataSet;
}
2014-03-12 17:43:26 +00:00
}