N98\Magento\Command\Developer\Module\Dependencies\FromCommandTest::dataProviderTestExecute PHP Method

dataProviderTestExecute() public static method

public static dataProviderTestExecute ( )
    public static function dataProviderTestExecute()
    {
        return array('Not existing module, no --all' => array('$moduleName' => 'NotExistentModule', '$all' => 0, '$expectations' => array("Module NotExistentModule was not found"), '$notContains' => array()), 'Not existing module, with --all' => array('$moduleName' => 'NotExistentModule', '$all' => 1, '$expectations' => array("Module NotExistentModule was not found"), '$notContains' => array()), 'Not existing module, with -a' => array('$moduleName' => 'NotExistentModule', '$all' => 2, '$expectations' => array("Module NotExistentModule was not found"), '$notContains' => array()), 'Mage_Compiler module, no --all' => array('$moduleName' => 'Mage_Compiler', '$all' => 0, '$expectations' => array("No modules depend on Mage_Compiler module"), '$notContains' => array()), 'Mage_Compiler module, with --all' => array('$moduleName' => 'Mage_Compiler', '$all' => 1, '$expectations' => array("No modules depend on Mage_Compiler module"), '$notContains' => array()), 'Mage_Compiler module, with -a' => array('$moduleName' => 'Mage_Compiler', '$all' => 2, '$expectations' => array("No modules depend on Mage_Compiler module"), '$notContains' => array()), 'Mage_Admin module, no --all' => array('$moduleName' => 'Mage_Admin', '$all' => 0, '$expectations' => array('Mage_Adminhtml'), '$notContains' => array('Mage_AdminNotification')), 'Mage_Admin module, with --all' => array('$moduleName' => 'Mage_Admin', '$all' => 1, '$expectations' => array('Mage_AdminNotification', 'Mage_Adminhtml'), '$notContains' => array('Mage_Compiler', 'Mage_Customer')), 'Mage_Admin module, with -a' => array('$moduleName' => 'Mage_Admin', '$all' => 2, '$expectations' => array('Mage_AdminNotification', 'Mage_Adminhtml'), '$notContains' => array('Mage_Compiler', 'Mage_Customer')));
    }