aboutsummaryrefslogtreecommitdiffstats
path: root/tests/wrapper/mt_rand_test.php
blob: c8bcb3d14cea85b5adad65b77391e2ced3e4fc5d (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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
/**
*
* @package testing
* @copyright (c) 2011 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/

require_once dirname(__FILE__) . '/../../phpBB/includes/functions.php';

class phpbb_wrapper_mt_rand_test extends phpbb_test_case
{
	public function test_max_equals_min()
	{
		$result = phpbb_mt_rand(42, 42);
		$this->assertEquals(42, $result);
	}

	public function test_max_equals_min_negative()
	{
		$result = phpbb_mt_rand(-42, -42);
		$this->assertEquals(-42, $result);
	}

	public function test_max_greater_min()
	{
		$result = phpbb_mt_rand(3, 4);
		$this->assertGreaterThanOrEqual(3, $result);
		$this->assertLessThanOrEqual(4, $result);
	}

	public function test_min_greater_max()
	{
		$result = phpbb_mt_rand(4, 3);
		$this->assertGreaterThanOrEqual(3, $result);
		$this->assertLessThanOrEqual(4, $result);
	}

	public function test_min_greater_max_negative()
	{
		$result = phpbb_mt_rand(-3, -4);
		$this->assertGreaterThanOrEqual(-4, $result);
		$this->assertLessThanOrEqual(-3, $result);
	}
}