19 lines
359 B
PHP
19 lines
359 B
PHP
<?php
|
|
/**
|
|
*
|
|
* @package phpBB Gallery Testing
|
|
* @copyright (c) 2013 nickvergessen
|
|
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
|
|
*
|
|
*/
|
|
|
|
namespace phpbbgallery\core\tests\systemtests;
|
|
|
|
class base_test extends \phpbbgallery\core\tests\testframework\test_case
|
|
{
|
|
public function test_check()
|
|
{
|
|
$this->assertTrue(true);
|
|
}
|
|
}
|