Passed
Push — developer ( be0222...346aa7 )
by Mariusz
41:58 queued 06:52
created

Install   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 10
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A testComposerInstall() 0 4 1
1
<?php
2
/**
3
 * Install test class.
4
 *
5
 * @copyright YetiForce Sp. z o.o.
6
 * @license   YetiForce Public License 3.0 (licenses/LicenseEN.txt or yetiforce.com)
7
 * @author    Michał Lorencik <[email protected]>
8
 */
9
use PHPUnit\Framework\TestCase;
10
11
/**
12
 * @covers Install::<public>
13
 */
14
class Install extends TestCase
15
{
16
	/**
17
	 * Checking Composer is instlled.
18
	 */
19
	public function testComposerInstall()
20
	{
21
		$this->assertFileExists('vendor/autoload.php');
22
	}
23
}
24