blob: 641ab27ac409496be183f92a623914d38a658caf [file] [log] [blame]
<?php
require_once( "writers/writer_database_test.php");
class ezcEventLogDatabaseTieinSuite extends PHPUnit_Framework_TestSuite
{
public function __construct()
{
parent::__construct();
$this->setName("EventLogDatabaseTiein");
$this->addTest( ezcLogDatabaseWriterTest::suite() );
}
public static function suite()
{
return new ezcEventLogDatabaseTieinSuite();
}
}
?>