Skip to content

Commit

Permalink
[ticket/12962] bootstrap functional and ui test when php >5.3.19
Browse files Browse the repository at this point in the history
PHPBB3-12962
  • Loading branch information
dhruvgoel92 committed Sep 21, 2014
1 parent 7fa596a commit 29ffdde
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions tests/bootstrap.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,9 @@
require_once 'test_framework/phpbb_test_case.php';
require_once 'test_framework/phpbb_database_test_case.php';
require_once 'test_framework/phpbb_database_test_connection_manager.php';
require_once 'test_framework/phpbb_functional_test_case.php';
require_once 'test_framework/phpbb_ui_test_case.php';

if (version_compare(PHP_VERSION,'5.3.19',">="))
{
require_once 'test_framework/phpbb_functional_test_case.php';
require_once 'test_framework/phpbb_ui_test_case.php';
}

0 comments on commit 29ffdde

Please sign in to comment.