Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 10 additions & 10 deletions tests/phpDocumentor/GraphViz/Test/AttributeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ protected function setUp()
/**
* Tests the construct method
*
* @covers phpDocumentor\GraphViz\Attribute::__construct
* @covers \phpDocumentor\GraphViz\Attribute::__construct
*
* @returnn void
*/
Expand All @@ -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()
{
Expand All @@ -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()
{
Expand All @@ -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()
{
Expand All @@ -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()
{
Expand Down Expand Up @@ -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()
{
Expand Down Expand Up @@ -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()
{
Expand Down
12 changes: 6 additions & 6 deletions tests/phpDocumentor/GraphViz/Test/EdgeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ protected function tearDown()
/**
* Tests the construct method
*
* @covers phpDocumentor\GraphViz\Edge::__construct
* @covers \phpDocumentor\GraphViz\Edge::__construct
*/
public function testConstruct()
{
Expand All @@ -66,7 +66,7 @@ public function testConstruct()
/**
* Tests the create method
*
* @covers phpDocumentor\GraphViz\Edge::create
* @covers \phpDocumentor\GraphViz\Edge::create
*/
public function testCreate()
{
Expand All @@ -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()
{
Expand All @@ -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()
{
Expand All @@ -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()
{
Expand All @@ -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()
{
Expand Down
36 changes: 18 additions & 18 deletions tests/phpDocumentor/GraphViz/Test/GraphTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ protected function tearDown()
}

/**
* @covers phpDocumentor\GraphViz\Graph::create
* @covers \phpDocumentor\GraphViz\Graph::create
*/
public function testCreate()
{
Expand Down Expand Up @@ -84,7 +84,7 @@ public function testCreate()
}

/**
* @covers phpDocumentor\GraphViz\Graph::setName
* @covers \phpDocumentor\GraphViz\Graph::setName
*/
public function testSetName()
{
Expand All @@ -96,7 +96,7 @@ public function testSetName()
}

/**
* @covers phpDocumentor\GraphViz\Graph::getName
* @covers \phpDocumentor\GraphViz\Graph::getName
*/
public function testGetName()
{
Expand All @@ -114,7 +114,7 @@ public function testGetName()
}

/**
* @covers phpDocumentor\GraphViz\Graph::setType
* @covers \phpDocumentor\GraphViz\Graph::setType
*/
public function testSetType()
{
Expand All @@ -136,7 +136,7 @@ public function testSetType()
}

/**
* @covers phpDocumentor\GraphViz\Graph::setType
* @covers \phpDocumentor\GraphViz\Graph::setType
*/
public function testSetTypeException()
{
Expand All @@ -145,7 +145,7 @@ public function testSetTypeException()
}

/**
* @covers phpDocumentor\GraphViz\Graph::getType
* @covers \phpDocumentor\GraphViz\Graph::getType
*/
public function testGetType()
{
Expand Down Expand Up @@ -197,7 +197,7 @@ public function testSetPath()
}

/**
* @covers phpDocumentor\GraphViz\Graph::__call
* @covers \phpDocumentor\GraphViz\Graph::__call
*/
public function test__call()
{
Expand All @@ -207,7 +207,7 @@ public function test__call()
}

/**
* @covers phpDocumentor\GraphViz\Graph::addGraph
* @covers \phpDocumentor\GraphViz\Graph::addGraph
*/
public function testAddGraph()
{
Expand All @@ -222,7 +222,7 @@ public function testAddGraph()
}

/**
* @covers phpDocumentor\GraphViz\Graph::hasGraph
* @covers \phpDocumentor\GraphViz\Graph::hasGraph
*/
public function testHasGraph()
{
Expand All @@ -236,7 +236,7 @@ public function testHasGraph()
}

/**
* @covers phpDocumentor\GraphViz\Graph::getGraph
* @covers \phpDocumentor\GraphViz\Graph::getGraph
*/
public function testGetGraph()
{
Expand All @@ -252,7 +252,7 @@ public function testGetGraph()
}

/**
* @covers phpDocumentor\GraphViz\Graph::setNode
* @covers \phpDocumentor\GraphViz\Graph::setNode
*/
public function testSetNode()
{
Expand All @@ -266,7 +266,7 @@ public function testSetNode()
}

/**
* @covers phpDocumentor\GraphViz\Graph::findNode
* @covers \phpDocumentor\GraphViz\Graph::findNode
*/
public function testFindNode()
{
Expand Down Expand Up @@ -295,7 +295,7 @@ public function testFindNode()
}

/**
* @covers phpDocumentor\GraphViz\Graph::__set
* @covers \phpDocumentor\GraphViz\Graph::__set
*/
public function test__set()
{
Expand All @@ -308,7 +308,7 @@ public function test__set()
}

/**
* @covers phpDocumentor\GraphViz\Graph::__get
* @covers \phpDocumentor\GraphViz\Graph::__get
*/
public function test__get()
{
Expand All @@ -322,7 +322,7 @@ public function test__get()
}

/**
* @covers phpDocumentor\GraphViz\Graph::link
* @covers \phpDocumentor\GraphViz\Graph::link
*/
public function testLink()
{
Expand All @@ -335,7 +335,7 @@ public function testLink()
}

/**
* @covers phpDocumentor\GraphViz\Graph::export
* @covers \phpDocumentor\GraphViz\Graph::export
*/
public function testExportException()
{
Expand All @@ -347,7 +347,7 @@ public function testExportException()
}

/**
* @covers phpDocumentor\GraphViz\Graph::export
* @covers \phpDocumentor\GraphViz\Graph::export
*/
public function testExport()
{
Expand All @@ -362,7 +362,7 @@ public function testExport()
}

/**
* @covers phpDocumentor\GraphViz\Graph::__toString
* @covers \phpDocumentor\GraphViz\Graph::__toString
*/
public function test__toString()
{
Expand Down
10 changes: 5 additions & 5 deletions tests/phpDocumentor/GraphViz/Test/NodeTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ protected function setUp()
/**
* Tests the construct method
*
* @covers phpDocumentor\GraphViz\Node::__construct
* @covers \phpDocumentor\GraphViz\Node::__construct
*
* @returnn void
*/
Expand All @@ -59,7 +59,7 @@ public function testConstruct()
/**
* Tests the create method
*
* @covers phpDocumentor\GraphViz\Node::create
* @covers \phpDocumentor\GraphViz\Node::create
*
* @returnn void
*/
Expand Down Expand Up @@ -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()
{
Expand All @@ -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()
{
Expand All @@ -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()
{
Expand Down