aboutsummaryrefslogblamecommitdiffhomepage
path: root/tests/Wallabag/CoreBundle/Mock/InstallCommandMock.php
blob: 5806bd4d5dc9b7a8329fa9760d3dfd7097305c75 (plain) (tree)
1
2
3

     
                                         













                                                                                           
                                                             



                     
<?php

namespace Tests\Wallabag\CoreBundle\Mock;

use Wallabag\CoreBundle\Command\InstallCommand;

/**
 * This mock aims to speed the test of InstallCommand by avoid calling external command
 * like all doctrine commands.
 *
 * This speed the test but as a downside, it doesn't allow to fully test the InstallCommand
 *
 * Launching tests to avoid doctrine command:
 *     phpunit --exclude-group command-doctrine
 */
class InstallCommandMock extends InstallCommand
{
    protected function runCommand($command, $parameters = [])
    {
        return $this;
    }
}