aboutsummaryrefslogtreecommitdiffstats
path: root/tests/request/deactivated_super_global_test.php
blob: d45f9ca6662223804dbea2bfcdd54fde954688f4 (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
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/

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\request_interface'), 'obj', \phpbb\request\request_interface::POST);
		$obj->offsetSet(0, 0);
	}
}