summaryrefslogtreecommitdiff
path: root/www/wiki/vendor/param-processor/param-processor/tests/phpunit/Definitions/StringParamTest.php
blob: dea22920d40f65ae0e1955b20d0b989754d200c0 (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
47
48
49
50
51
52
53
54
55
56
<?php

namespace ParamProcessor\Tests\Definitions;

/**
 * @licence GNU GPL v2+
 * @author Jeroen De Dauw < jeroendedauw@gmail.com >
 */
class StringParamTest extends ParamDefinitionTest {

	/**
	 * @see ParamDefinitionTest::getDefinitions
	 */
	public function getDefinitions() {
		$params = parent::getDefinitions();



		return $params;
	}

	/**
	 * @see ParamDefinitionTest::valueProvider
	 *
	 * @param boolean $stringlyTyped
	 *
	 * @return array
	 */
	public function valueProvider( $stringlyTyped = true ) {
		return [
			'empty' => [
				[ 'ohi there', true, 'ohi there' ],
				[ 4.2, false ],
				[ [ 42 ], false ],
			],
			'values' => [
				[ 'foo', true, 'foo' ],
				[ '1', true, '1' ],
				[ 'yes', true, 'yes' ],
				[ 'bar', false ],
				[ true, false ],
				[ 0.1, false ],
				[ [], false ],
			],
		];
	}

	/**
	 * @see ParamDefinitionTest::getType
	 * @return string
	 */
	public function getType() {
		return 'string';
	}

}