for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Mongrate\MongrateBundle\Tests\Command;
use Symfony\Component\Console\Application;
use Symfony\Component\Console\Tester\CommandTester;
use Mongrate\MongrateBundle\Command\TestAllCommand;
class TestAllCommandTest extends AbstractCommandTest
{
public function testAllCommandIsFound()
$this->application->add(new TestAllCommand($this->config));
$this->assertCommandIsFound('mongrate:test-all', TestAllCommand::class);
}