diff --git a/tests/phpDocumentor/GraphViz/Test/AttributeTest.php b/tests/phpDocumentor/GraphViz/Test/AttributeTest.php index 7077ba6..d8b40eb 100644 --- a/tests/phpDocumentor/GraphViz/Test/AttributeTest.php +++ b/tests/phpDocumentor/GraphViz/Test/AttributeTest.php @@ -39,7 +39,7 @@ protected function setUp() /** * Tests the construct method * - * @covers phpDocumentor\GraphViz\Attribute::__construct + * @covers \phpDocumentor\GraphViz\Attribute::__construct * * @returnn void */ @@ -57,8 +57,8 @@ public function testConstruct() /** * Tests the getting and setting of the key. * - * @covers phpDocumentor\GraphViz\Attribute::getKey - * @covers phpDocumentor\GraphViz\Attribute::setKey + * @covers \phpDocumentor\GraphViz\Attribute::getKey + * @covers \phpDocumentor\GraphViz\Attribute::setKey */ public function testKey() { @@ -82,8 +82,8 @@ public function testKey() /** * Tests the getting and setting of the value. * - * @covers phpDocumentor\GraphViz\Attribute::getValue - * @covers phpDocumentor\GraphViz\Attribute::setValue + * @covers \phpDocumentor\GraphViz\Attribute::getValue + * @covers \phpDocumentor\GraphViz\Attribute::setValue */ public function testValue() { @@ -107,7 +107,7 @@ public function testValue() /** * Tests whether a string starting with a < is recognized as HTML. * - * @covers phpDocumentor\GraphViz\Attribute::isValueInHtml + * @covers \phpDocumentor\GraphViz\Attribute::isValueInHtml */ public function testIsValueInHtml() { @@ -127,7 +127,7 @@ public function testIsValueInHtml() /** * Tests whether the toString provides a valid GraphViz attribute string. * - * @covers phpDocumentor\GraphViz\Attribute::__toString + * @covers \phpDocumentor\GraphViz\Attribute::__toString */ public function testToString() { @@ -163,8 +163,8 @@ public function testToString() /** * Tests whether the toString provides a valid GraphViz attribute string. * - * @covers phpDocumentor\GraphViz\Attribute::__toString - * @covers phpDocumentor\GraphViz\Attribute::encodeSpecials + * @covers \phpDocumentor\GraphViz\Attribute::__toString + * @covers \phpDocumentor\GraphViz\Attribute::encodeSpecials */ public function testToStringWithSpecials() { @@ -193,7 +193,7 @@ public function testToStringWithSpecials() /** * Tests whether the isValueContainingSpecials function * - * @covers phpDocumentor\GraphViz\Attribute::isValueContainingSpecials + * @covers \phpDocumentor\GraphViz\Attribute::isValueContainingSpecials */ public function testIsValueContainingSpecials() { diff --git a/tests/phpDocumentor/GraphViz/Test/EdgeTest.php b/tests/phpDocumentor/GraphViz/Test/EdgeTest.php index f11c275..ce21d52 100644 --- a/tests/phpDocumentor/GraphViz/Test/EdgeTest.php +++ b/tests/phpDocumentor/GraphViz/Test/EdgeTest.php @@ -41,7 +41,7 @@ protected function tearDown() /** * Tests the construct method * - * @covers phpDocumentor\GraphViz\Edge::__construct + * @covers \phpDocumentor\GraphViz\Edge::__construct */ public function testConstruct() { @@ -66,7 +66,7 @@ public function testConstruct() /** * Tests the create method * - * @covers phpDocumentor\GraphViz\Edge::create + * @covers \phpDocumentor\GraphViz\Edge::create */ public function testCreate() { @@ -80,7 +80,7 @@ public function testCreate() * Tests whether the getFrom method returns the same node as passed * in the create method * - * @covers phpDocumentor\GraphViz\Edge::getFrom + * @covers \phpDocumentor\GraphViz\Edge::getFrom */ public function testGetFrom() { @@ -93,7 +93,7 @@ public function testGetFrom() * Tests the getTo method returns the same node as passed * in the create method * - * @covers phpDocumentor\GraphViz\Edge::getTo + * @covers \phpDocumentor\GraphViz\Edge::getTo */ public function testGetTo() { @@ -107,7 +107,7 @@ public function testGetTo() * instance for a setX method, return the value for an getX method, and null * for the remaining method calls * - * @covers phpDocumentor\GraphViz\Edge::__call + * @covers \phpDocumentor\GraphViz\Edge::__call */ public function testCall() { @@ -122,7 +122,7 @@ public function testCall() * Tests whether the magic __toString method returns a well formatted string * as specified in the DOT standard * - * @covers phpDocumentor\GraphViz\Edge::__toString + * @covers \phpDocumentor\GraphViz\Edge::__toString */ public function testToString() { diff --git a/tests/phpDocumentor/GraphViz/Test/GraphTest.php b/tests/phpDocumentor/GraphViz/Test/GraphTest.php index 6dcc1c3..5c911ba 100644 --- a/tests/phpDocumentor/GraphViz/Test/GraphTest.php +++ b/tests/phpDocumentor/GraphViz/Test/GraphTest.php @@ -54,7 +54,7 @@ protected function tearDown() } /** - * @covers phpDocumentor\GraphViz\Graph::create + * @covers \phpDocumentor\GraphViz\Graph::create */ public function testCreate() { @@ -84,7 +84,7 @@ public function testCreate() } /** - * @covers phpDocumentor\GraphViz\Graph::setName + * @covers \phpDocumentor\GraphViz\Graph::setName */ public function testSetName() { @@ -96,7 +96,7 @@ public function testSetName() } /** - * @covers phpDocumentor\GraphViz\Graph::getName + * @covers \phpDocumentor\GraphViz\Graph::getName */ public function testGetName() { @@ -114,7 +114,7 @@ public function testGetName() } /** - * @covers phpDocumentor\GraphViz\Graph::setType + * @covers \phpDocumentor\GraphViz\Graph::setType */ public function testSetType() { @@ -136,7 +136,7 @@ public function testSetType() } /** - * @covers phpDocumentor\GraphViz\Graph::setType + * @covers \phpDocumentor\GraphViz\Graph::setType */ public function testSetTypeException() { @@ -145,7 +145,7 @@ public function testSetTypeException() } /** - * @covers phpDocumentor\GraphViz\Graph::getType + * @covers \phpDocumentor\GraphViz\Graph::getType */ public function testGetType() { @@ -197,7 +197,7 @@ public function testSetPath() } /** - * @covers phpDocumentor\GraphViz\Graph::__call + * @covers \phpDocumentor\GraphViz\Graph::__call */ public function test__call() { @@ -207,7 +207,7 @@ public function test__call() } /** - * @covers phpDocumentor\GraphViz\Graph::addGraph + * @covers \phpDocumentor\GraphViz\Graph::addGraph */ public function testAddGraph() { @@ -222,7 +222,7 @@ public function testAddGraph() } /** - * @covers phpDocumentor\GraphViz\Graph::hasGraph + * @covers \phpDocumentor\GraphViz\Graph::hasGraph */ public function testHasGraph() { @@ -236,7 +236,7 @@ public function testHasGraph() } /** - * @covers phpDocumentor\GraphViz\Graph::getGraph + * @covers \phpDocumentor\GraphViz\Graph::getGraph */ public function testGetGraph() { @@ -252,7 +252,7 @@ public function testGetGraph() } /** - * @covers phpDocumentor\GraphViz\Graph::setNode + * @covers \phpDocumentor\GraphViz\Graph::setNode */ public function testSetNode() { @@ -266,7 +266,7 @@ public function testSetNode() } /** - * @covers phpDocumentor\GraphViz\Graph::findNode + * @covers \phpDocumentor\GraphViz\Graph::findNode */ public function testFindNode() { @@ -295,7 +295,7 @@ public function testFindNode() } /** - * @covers phpDocumentor\GraphViz\Graph::__set + * @covers \phpDocumentor\GraphViz\Graph::__set */ public function test__set() { @@ -308,7 +308,7 @@ public function test__set() } /** - * @covers phpDocumentor\GraphViz\Graph::__get + * @covers \phpDocumentor\GraphViz\Graph::__get */ public function test__get() { @@ -322,7 +322,7 @@ public function test__get() } /** - * @covers phpDocumentor\GraphViz\Graph::link + * @covers \phpDocumentor\GraphViz\Graph::link */ public function testLink() { @@ -335,7 +335,7 @@ public function testLink() } /** - * @covers phpDocumentor\GraphViz\Graph::export + * @covers \phpDocumentor\GraphViz\Graph::export */ public function testExportException() { @@ -347,7 +347,7 @@ public function testExportException() } /** - * @covers phpDocumentor\GraphViz\Graph::export + * @covers \phpDocumentor\GraphViz\Graph::export */ public function testExport() { @@ -362,7 +362,7 @@ public function testExport() } /** - * @covers phpDocumentor\GraphViz\Graph::__toString + * @covers \phpDocumentor\GraphViz\Graph::__toString */ public function test__toString() { diff --git a/tests/phpDocumentor/GraphViz/Test/NodeTest.php b/tests/phpDocumentor/GraphViz/Test/NodeTest.php index 307a44f..b3ffe16 100644 --- a/tests/phpDocumentor/GraphViz/Test/NodeTest.php +++ b/tests/phpDocumentor/GraphViz/Test/NodeTest.php @@ -41,7 +41,7 @@ protected function setUp() /** * Tests the construct method * - * @covers phpDocumentor\GraphViz\Node::__construct + * @covers \phpDocumentor\GraphViz\Node::__construct * * @returnn void */ @@ -59,7 +59,7 @@ public function testConstruct() /** * Tests the create method * - * @covers phpDocumentor\GraphViz\Node::create + * @covers \phpDocumentor\GraphViz\Node::create * * @returnn void */ @@ -101,7 +101,7 @@ public function testName() * instance for a setX method, return the value for an getX method, and null * for the remaining method calls * - * @covers phpDocumentor\GraphViz\Node::__call + * @covers \phpDocumentor\GraphViz\Node::__call */ public function testCall() { @@ -115,7 +115,7 @@ public function testCall() * Tests whether the magic __toString method returns a well formatted string * as specified in the DOT standard * - * @covers phpDocumentor\GraphViz\Node::__toString + * @covers \phpDocumentor\GraphViz\Node::__toString */ public function testToString() { @@ -137,7 +137,7 @@ public function testToString() * Tests whether the magic __toString method returns a well formatted string * as specified in the DOT standard when the label contains slashes. * - * @covers phpDocumentor\GraphViz\Node::__toString + * @covers \phpDocumentor\GraphViz\Node::__toString */ public function testToStringWithLabelContainingSlashes() {