mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-26 00:54:27 +00:00
EZ-Components
This commit is contained in:
@@ -0,0 +1,31 @@
|
||||
<?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;
|
||||
}
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user