Completed
Branch master (136162)
by Aimeos
06:57
created

AdminControllerTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
wmc 1
eloc 3
dl 0
loc 7
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A testIndexAction() 0 5 1
1
<?php
2
3
class AdminControllerTest extends AimeosTestAbstract
4
{
5
	public function testIndexAction()
6
	{
7
		$response = $this->action('GET', '\Aimeos\Shop\Controller\AdminController@indexAction');
8
9
		$this->assertEquals( '302', $response->getStatusCode() );
10
	}
11
}