aboutsummaryrefslogtreecommitdiffstats
path: root/tests/class_visibility/user_mock.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/class_visibility/user_mock.php')
-rw-r--r--tests/class_visibility/user_mock.php17
1 files changed, 17 insertions, 0 deletions
diff --git a/tests/class_visibility/user_mock.php b/tests/class_visibility/user_mock.php
new file mode 100644
index 0000000000..cbeec23875
--- /dev/null
+++ b/tests/class_visibility/user_mock.php
@@ -0,0 +1,17 @@
+<?php
+/**
+*
+* @package testing
+* @version $Id$
+* @copyright (c) 2008 phpBB Group
+* @license http://opensource.org/licenses/gpl-license.php GNU Public License
+*
+*/
+
+/*
+* Mock a very basic user object, only having data array.
+*/
+class phpbb_user_mock
+{
+ public $data;
+} \ No newline at end of file