Completed
Push — master ( 9458ed...7d322b )
by Henry
10:04
created

PasswordTest::testSanitize()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 14

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 14
rs 9.7998
c 0
b 0
f 0
cc 1
nc 1
nop 2
1
<?php
2
namespace Redaxscript\Tests\Filter;
3
4
use Redaxscript\Filter;
5
use Redaxscript\Tests\TestCaseAbstract;
6
7
/**
8
 * PasswordTest
9
 *
10
 * @since 4.3.0
11
 *
12
 * @package Redaxscript
13
 * @category Tests
14
 * @author Henry Ruhs
15
 *
16
 * @covers Redaxscript\Filter\Password
17
 */
18
19
class PasswordTest extends TestCaseAbstract
20
{
21
	/**
22
	 * testSanitize
23
	 *
24
	 * @since 4.3.0
25
	 *
26
	 * @param string $password
27
	 * @param string $expect
28
	 *
29
	 * @dataProvider providerAutoloader
30
	 */
31
32
	public function testSanitize(string $password = null, string $expect = null) : void
33
	{
34
		/* setup */
35
36
		$filter = new Filter\Password();
37
38
		/* actual */
39
40
		$actual = $filter->sanitize($password);
41
42
		/* compare */
43
44
		$this->assertEquals($expect, $actual);
45
	}
46
}
47