/**
  * tests set margins
  */
 public function testSetMargins()
 {
     $expected = array(0.1, 0.2, 0.3, 1.4);
     $this->_section->setMargins($expected[0], $expected[1], $expected[2], $expected[3]);
     $actual = array($this->_section->getMarginLeft(), $this->_section->getMarginTop(), $this->_section->getMarginRight(), $this->_section->getMarginBottom());
     $this->assertEquals($expected, $actual);
 }