ExampleTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
dl 0
loc 12
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A testBasicExample() 0 5 1
1
<?php
2
3
class ExampleTest extends TestCase {
4
5
	/**
6
	 * A basic functional test example.
7
	 *
8
	 * @return void
9
	 */
10
	public function testBasicExample()
11
	{
12
		$crawler = $this->client->request('GET', '/');
0 ignored issues
show
Unused Code introduced by
The assignment to $crawler is dead and can be removed.
Loading history...
13
14
		$this->assertRedirectedTo('login');
15
	}
16
17
}
18