aboutsummaryrefslogtreecommitdiffstats
path: root/tests/request/deactivated_super_global.php
blob: ea385831c969e858ef1459bd1453be51100ab6fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?php
/**
*
* @package testing
* @version $Id$
* @copyright (c) 2009 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/

require_once __DIR__ . '/../../phpBB/includes/request/interface.php';
require_once __DIR__ . '/../../phpBB/includes/request/deactivated_super_global.php';

class phpbb_deactivated_super_global_test extends phpbb_test_case
{
	/**
	* Checks that on write access the correct error is thrown
	*/
	public function test_write_triggers_error()
	{
		$this->setExpectedTriggerError(E_USER_ERROR);
		$obj = new phpbb_request_deactivated_super_global($this->getMock('phpbb_request_interface'), 'obj', phpbb_request_interface::POST);
		$obj->offsetSet(0, 0);
	}
}