PathTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 28
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
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
 * PathTest
9
 *
10
 * @since 2.6.0
11
 *
12
 * @package Redaxscript
13
 * @category Tests
14
 * @author Henry Ruhs
15
 *
16
 * @covers Redaxscript\Filter\Path
17
 */
18
19
class PathTest extends TestCaseAbstract
20
{
21
	/**
22
	 * testSanitize
23
	 *
24
	 * @since 2.6.0
25
	 *
26
	 * @param string $path
27
	 * @param string $expect
28
	 *
29
	 * @dataProvider providerAutoloader
30
	 */
31
32
	public function testSanitize(string $path = null, string $expect = null) : void
33
	{
34
		/* setup */
35
36
		$filter = new Filter\Path();
37
38
		/* actual */
39
40
		$actual = $filter->sanitize($path, '/');
41
42
		/* compare */
43
44
		$this->assertSame($expect, $actual);
45
	}
46
}
47