1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-05 00:07:44 +02:00

[ticket/11608] add search functional tests to search subfolder

PHPBB3-11608
This commit is contained in:
Dhruv
2013-07-06 20:36:41 +05:30
parent 07c259f4b1
commit b31bb8653b
5 changed files with 10 additions and 11 deletions

View File

@@ -0,0 +1,24 @@
<?php
/**
*
* @package testing
* @copyright (c) 2013 phpBB Group
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
require_once dirname(__FILE__) . '/base_test.php';
/**
* @group functional
*/
class phpbb_functional_search_postgres_test extends phpbb_functional_search_base_test
{
protected $search_backend;
public function setUp()
{
parent::setUp();
$this->search_backend = 'phpbb_search_fulltext_postgres';
}
}