24 lines
476 B
PHP
24 lines
476 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 board3\tests\testframework;
|
|
|
|
abstract class test_case extends \phpbb_test_case
|
|
{
|
|
public function get_test_case_helpers()
|
|
{
|
|
if (!$this->test_case_helpers)
|
|
{
|
|
$this->test_case_helpers = new \board3\tests\testframework\test_case_helpers($this);
|
|
}
|
|
|
|
return $this->test_case_helpers;
|
|
}
|
|
}
|