[ticket/686] Add possibility to use UI tests

B3P-686
This commit is contained in:
Marc Alexander
2016-07-31 20:12:18 +02:00
parent 8101fd3ede
commit acea787547
2 changed files with 47 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
<?php
/**
*
* @package Board3 Portal Testing
* @copyright (c) Board3 Group ( www.board3.de )
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
namespace board3\portal\tests\testframework;
abstract class ui_test_case extends \phpbb_ui_test_case
{
static protected function setup_extensions()
{
return array('board3/portal');
}
}