diff options
author | brunoais <brunoaiss@gmail.com> | 2015-01-02 11:46:03 +0000 |
---|---|---|
committer | brunoais <brunoaiss@gmail.com> | 2015-01-02 11:46:03 +0000 |
commit | 8376a027a122af99782fa2d9f87185b448e2cf77 (patch) | |
tree | c7bb4eeed451b0cd61c5ef42b67b2beb5e6bfb2e /tests/content_visibility/set_post_visibility_test.php | |
parent | abc5dbcd7152f57ad1d02bfa012b4fd67691b964 (diff) | |
download | forums-8376a027a122af99782fa2d9f87185b448e2cf77.tar forums-8376a027a122af99782fa2d9f87185b448e2cf77.tar.gz forums-8376a027a122af99782fa2d9f87185b448e2cf77.tar.bz2 forums-8376a027a122af99782fa2d9f87185b448e2cf77.tar.xz forums-8376a027a122af99782fa2d9f87185b448e2cf77.zip |
[ticket/13146] Setup mocks for tests with dispatcher
PHPBB3-13146
Diffstat (limited to 'tests/content_visibility/set_post_visibility_test.php')
-rw-r--r-- | tests/content_visibility/set_post_visibility_test.php | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/tests/content_visibility/set_post_visibility_test.php b/tests/content_visibility/set_post_visibility_test.php index 8cb14312ef..149530e122 100644 --- a/tests/content_visibility/set_post_visibility_test.php +++ b/tests/content_visibility/set_post_visibility_test.php @@ -126,7 +126,9 @@ class phpbb_content_visibility_set_post_visibility_test extends phpbb_database_t $auth = $this->getMock('\phpbb\auth\auth'); $user = new \phpbb\user('\phpbb\datetime'); $config = new phpbb\config\config(array()); - $phpbb_dispatcher = $this->getMock('\phpbb\event\dispatcher'); + $phpbb_dispatcher = $this->getMockBuilder('\phpbb\event\dispatcher') + ->disableOriginalConstructor() + ->getMock(); $content_visibility = new \phpbb\content_visibility($auth, $config, $phpbb_dispatcher, $db, $user, $phpbb_root_path, $phpEx, FORUMS_TABLE, POSTS_TABLE, TOPICS_TABLE, USERS_TABLE); $content_visibility->set_post_visibility($visibility, $post_id, $topic_id, $forum_id, $user_id, $time, $reason, $is_starter, $is_latest); |