N98\Magento\Application\ConfigTest::customCommands PHP Method

customCommands() public method

public customCommands ( )
    public function customCommands()
    {
        $array = array('commands' => array('customCommands' => array('N98\\Magento\\Command\\Config\\GetCommand', array('name' => 'N98\\Magento\\Command\\Config\\GetCommand'))));
        $output = new BufferedOutput();
        $output->setVerbosity($output::VERBOSITY_DEBUG);
        $config = new Config(array(), false, $output);
        $config->setConfig($array);
        /** @var Application $application */
        $application = $this->getMock('N98\\Magento\\Application');
        $config->registerCustomCommands($application);
    }