/**
  * Set/get width
  */
 public function testWidth()
 {
     $oTable = new Table();
     $iVal = rand(1, 1000);
     $oTable->setWidth($iVal);
     $this->assertEquals($iVal, $oTable->getWidth());
 }