Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
IsActiveFilterTest.php
Go to the documentation of this file.
1 <?php
7 
9 {
13  protected function getSourceClassName()
14  {
15  return \Magento\Cms\Model\Page\Source\IsActiveFilter::class;
16  }
17 
22  {
23  return [
24  [
25  [],
26  [['label' => '', 'value' => '']],
27  ],
28  [
29  ['testStatus' => 'testValue'],
30  [['label' => '', 'value' => ''], ['label' => 'testValue', 'value' => 'testStatus']],
31  ],
32  ];
33  }
34 }