Example #1
0
 /**
  * @covers phpDocumentor\GraphViz\Graph::getType
  */
 public function testGetType()
 {
     $this->assertSame($this->fixture->getType(), 'digraph');
     $this->fixture->setType('graph');
     $this->assertSame($this->fixture->getType(), 'graph');
 }