Ejemplo n.º 1
0
 /**
  * @magentoConfigFixture current_store catalog/layered_navigation/price_range_calculation manual
  */
 public function testApplyManual()
 {
     $request = new Magento_Test_Request();
     $request->setParam('price', '10-20');
     $this->_model->apply($request, new Mage_Core_Block_Text());
     $this->assertEquals(array(10, 20), $this->_model->getData('interval'));
 }