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

Install::testComposerInstall()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
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