N98\Magento\Command\Developer\Module\Dependencies\OnCommandTest::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_Core module, no --all' => array('$moduleName' => 'Mage_Core', '$all' => 0, '$expectations' => array("Module Mage_Core doesn't have dependencies"), '$notContains' => array()), 'Mage_Core module, with --all' => array('$moduleName' => 'Mage_Core', '$all' => 1, '$expectations' => array("Module Mage_Core doesn't have dependencies"), '$notContains' => array()), 'Mage_Core module, with -a' => array('$moduleName' => 'Mage_Core', '$all' => 2, '$expectations' => array("Module Mage_Core doesn't have dependencies"), '$notContains' => array()), 'Mage_Customer module, no --all' => array('$moduleName' => 'Mage_Customer', '$all' => 0, '$expectations' => array('Mage_Dataflow', 'Mage_Eav'), '$notContains' => array('Mage_Core')), 'Mage_Customer module, with --all' => array('$moduleName' => 'Mage_Customer', '$all' => 1, '$expectations' => array('Mage_Core', 'Mage_Dataflow', 'Mage_Eav'), '$notContains' => array()), 'Mage_Customer module, with -a' => array('$moduleName' => 'Mage_Customer', '$all' => 2, '$expectations' => array('Mage_Core', 'Mage_Dataflow', 'Mage_Eav'), '$notContains' => array()));
    }