コード例 #1
0
 public function testGetBodyAttributeOrder()
 {
     $view = $this->_object->getView();
     $conf = new MW_Config_Array();
     $conf->set('client/html/catalog/filter/attribute/types', array('color', 'width', 'length'));
     $helper = new MW_View_Helper_Config_Default($view, $conf);
     $view->addHelper('config', $helper);
     $output = $this->_object->getBody();
     $regex = '/<fieldset class="attr-color">.*<fieldset class="attr-width">.*<fieldset class="attr-length">/smu';
     $this->assertNotContains('<fieldset class="attr-size">', $output);
     $this->assertRegexp($regex, $output);
 }