Example #1
0
 /**
  * test PHPRtfLite_Container_Section::setColumnWidths
  */
 public function testSetColumnsWidths()
 {
     $this->_section->setMarginLeft(0);
     $this->_section->setMarginRight(0);
     $this->_section->setPaperWidth(15);
     $expected = array(1.5, 5, 2.3, 2);
     $this->_section->setColumnWidths($expected);
     $this->assertEquals($expected, $this->_section->getColumnWidths());
 }