mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-01 12:19:28 +00:00
32 lines
667 B
PHP
32 lines
667 B
PHP
<?php
|
|
/**
|
|
* @package GraphDatabaseTiein
|
|
* @subpackage Tests
|
|
* @version 1.0
|
|
* @copyright Copyright (C) 2005-2007 eZ systems as. All rights reserved.
|
|
* @license http://ez.no/licenses/new_bsd New BSD License
|
|
*/
|
|
|
|
require_once 'dataset_pdo_test.php';
|
|
|
|
/**
|
|
* @package GraphDatabaseTiein
|
|
* @subpackage Tests
|
|
*/
|
|
class ezcGraphDatabaseTieinSuite extends PHPUnit_Framework_TestSuite
|
|
{
|
|
public function __construct()
|
|
{
|
|
parent::__construct();
|
|
$this->setName( 'GraphDatabaseTiein' );
|
|
|
|
$this->addTest( ezcGraphDatabaseTest::suite() );
|
|
}
|
|
|
|
public static function suite()
|
|
{
|
|
return new ezcGraphDatabaseTieinSuite;
|
|
}
|
|
}
|
|
?>
|