Passed
Branch master (068d7d)
by Mathieu
01:51
created

RouteTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 10
dl 0
loc 15
rs 10
c 1
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A testConstruct() 0 13 1
1
<?php
2
class RouteTest extends \PHPUnit\Framework\TestCase
3
{
4
    public function testConstruct()
5
    {
6
        $name   = 'myRoute';
7
        $method = 'any';
8
        $path   = '/test-uri';
9
        $request = new Suricate\Request();
10
        $routeTarget = 'myController::myMethod';
11
        $parametersDefinitions = [];
12
        $middleware = null;
13
14
        $route = new Suricate\Route($name, $method, $path, $request, $routeTarget, $parametersDefinitions, $middleware);
15
16
        $this->assertEquals($path, $route->getPath());
17
    }
18
}