FluidTYPO3\Fluidcontent\Tests\Unit\Provider\WizardItemsHookSubscriberTest::getTestElementsWhiteAndBlackListsAndExpectedList PHP Method

getTestElementsWhiteAndBlackListsAndExpectedList() public method

    public function getTestElementsWhiteAndBlackListsAndExpectedList()
    {
        $items = array('plugins' => array('title' => 'Nice header'), 'plugins_test1' => array('tt_content_defValues' => array('CType' => 'fluidcontent_content', 'tx_fed_fcefile' => 'test1:test1')), 'plugins_test2' => array('tt_content_defValues' => array('CType' => 'fluidcontent_content', 'tx_fed_fcefile' => 'test2:test2')));
        return array(array($items, NULL, NULL, $items), array($items, 'test1:test1', NULL, array('plugins' => array('title' => 'Nice header'), 'plugins_test1' => $items['plugins_test1'])), array($items, NULL, 'test1:test1', array('plugins' => array('title' => 'Nice header'), 'plugins_test2' => $items['plugins_test2'])), array($items, 'test1:test1', 'test1:test1', array()));
    }