aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/Wallabag/CoreBundle/Tests/Mock/InstallCommandMock.php
blob: 69bc48e06e27337b3ee82c7f88d59ad0c9ee0392 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<?php

namespace Wallabag\CoreBundle\Tests\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 = array())
    {
        return $this;
    }
}