for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Tests\Queryr\Replicator\Cli;
use PHPUnit\Framework\TestCase;
use Queryr\Replicator\Cli\ReplicatorCli;
use Symfony\Component\Console\Application;
/**
* @covers \Queryr\Replicator\Cli\ReplicatorCli
*
* @licence GNU GPL v2+
* @author Jeroen De Dauw < [email protected] >
*/
class ReplicatorCliTest extends TestCase {
public function testNewApplicationReturnsApplication() {
$replicator = new ReplicatorCli();
$this->assertInstanceOf(
Application::class,
$replicator->newApplication()
);
}