1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

[feature/soft-delete] Fix unit tests for delete_posts()

PHPBB3-9567
This commit is contained in:
Joas Schilling
2012-10-23 23:37:25 +02:00
parent 3236229188
commit b3d5f2b4e4
3 changed files with 79 additions and 17 deletions

23
tests/mock/search.php Normal file
View File

@@ -0,0 +1,23 @@
<?php
/**
*
* @package testing
* @copyright (c) 2012 phpBB Group
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
/**
*/
class phpbb_mock_search
{
public function __construct($error, $phpbb_root_path, $phpEx, $auth, $config, $db, $user)
{
}
public function index_remove($post_ids, $poster_ids, $forum_ids)
{
}
}