示例#1
0
 /**
  * Test set/get connectorType
  */
 public function testSetGetConnectorType()
 {
     $expected = \PhpOffice\PhpWord\Style\Line::CONNECTOR_TYPE_STRAIGHT;
     $object = new Line();
     $object->setConnectorType($expected);
     $this->assertEquals($expected, $object->getConnectorType());
 }