/**
  * tests PHPRtfLite_Container_Section::getLayoutWidth
  * @depends testGetLayoutWidthUsingSectionValues
  * @expectedException PHPRtfLite_Exception
  */
 public function testGetLayoutWidthUsingSectionValuesException()
 {
     $this->_section->setMarginLeft(5.3);
     $this->_section->setMarginRight(5.7);
     $this->_section->setPaperWidth(11);
     $this->_section->getLayoutWidth();
 }