Completed
Push — master ( 0c89f9...7a6f38 )
by Aimeos
01:52
created

AccountControllerTest::testAccountAction()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 6
rs 9.4285
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
3
namespace Aimeos\Shop\Tests\Functional\Controller;
4
5
6
class AccountControllerTest extends \TYPO3\Flow\Tests\FunctionalTestCase
7
{
8
	public function testAccountAction()
9
	{
10
		$response = $this->browser->request( 'http://localhost/unittest/myaccount/download/0', 'GET' );
11
12
		$this->assertEquals( 401, $response->getStatusCode() );
13
	}
14
}
15