for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Install test class.
*
* @copyright YetiForce Sp. z o.o.
* @license YetiForce Public License 3.0 (licenses/LicenseEN.txt or yetiforce.com)
* @author Michał Lorencik <[email protected]>
*/
use PHPUnit\Framework\TestCase;
* @covers Install::<public>
class Install extends TestCase
{
* Checking Composer is instlled.
public function testComposerInstall()
$this->assertFileExists('vendor/autoload.php');
}