コード例 #1
0
ファイル: GraphTest.php プロジェクト: axelmdev/ecommerce
 /**
  * @covers phpDocumentor\GraphViz\Graph::getType
  */
 public function testGetType()
 {
     $this->assertSame($this->fixture->getType(), 'digraph');
     $this->fixture->setType('graph');
     $this->assertSame($this->fixture->getType(), 'graph');
 }