JMOlivas\Phpqa\Command\AnalyzeCommandTest::it_should_throw_exception_if_files_is_provided_but_it_is_empty PHP Method

it_should_throw_exception_if_files_is_provided_but_it_is_empty() public method

    function it_should_throw_exception_if_files_is_provided_but_it_is_empty()
    {
        $application = new Application();
        $command = new AnalyzeCommand();
        $command->setApplication($application);
        $tester = new CommandTester($command);
        $tester->execute(['--files' => [null]]);
    }