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

NameTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 28
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 2
dl 0
loc 28
rs 10
c 0
b 0
f 0

1 Method

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