/**
  * Add cell
  */
 public function testAddCell()
 {
     $oRow = new Row();
     $element = $oRow->addCell();
     $this->assertInstanceOf('PhpOffice\\PhpWord\\Element\\Cell', $element);
     $this->assertCount(1, $oRow->getCells());
 }