aboutsummaryrefslogtreecommitdiffstats
path: root/tests/functional/search/mysql_test.php
diff options
context:
space:
mode:
authorDhruv <dhruv.goel92@gmail.com>2013-07-06 20:36:41 +0530
committerDhruv <dhruv.goel92@gmail.com>2013-10-05 21:15:36 +0530
commitb31bb8653b12f984957d4c62ccf280deb1e6400e (patch)
tree8bd5c8531bbc47e1b0a5c2be8bb87d606a2ae9ab /tests/functional/search/mysql_test.php
parent07c259f4b1036ab299c3293c3961125c19907017 (diff)
downloadforums-b31bb8653b12f984957d4c62ccf280deb1e6400e.tar
forums-b31bb8653b12f984957d4c62ccf280deb1e6400e.tar.gz
forums-b31bb8653b12f984957d4c62ccf280deb1e6400e.tar.bz2
forums-b31bb8653b12f984957d4c62ccf280deb1e6400e.tar.xz
forums-b31bb8653b12f984957d4c62ccf280deb1e6400e.zip
[ticket/11608] add search functional tests to search subfolder
PHPBB3-11608
Diffstat (limited to 'tests/functional/search/mysql_test.php')
-rw-r--r--tests/functional/search/mysql_test.php24
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/functional/search/mysql_test.php b/tests/functional/search/mysql_test.php
new file mode 100644
index 0000000000..f27269d76a
--- /dev/null
+++ b/tests/functional/search/mysql_test.php
@@ -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_mysql_test extends phpbb_functional_search_base_test
+{
+ protected $search_backend;
+
+ public function setUp()
+ {
+ parent::setUp();
+ $this->search_backend = 'phpbb_search_fulltext_mysql';
+ }
+}