ExampleTest::testBasicExample()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 0
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