Skip to content

Commit

Permalink
Fixed @Covers annotations
Browse files Browse the repository at this point in the history
  • Loading branch information
Seldaek committed Nov 19, 2010
1 parent 8718bf9 commit a6faaf3
Show file tree
Hide file tree
Showing 7 changed files with 69 additions and 69 deletions.
2 changes: 1 addition & 1 deletion tests/Jackalope/NodeType/NodeDefinitionTemplateTest.php
Expand Up @@ -7,7 +7,7 @@
class NodeDefinitionTemplateTest extends TestCase
{
/**
* @covers jackalope\NodeType\NodeDefinitionTemplate::__construct
* @covers Jackalope\NodeType\NodeDefinitionTemplate::__construct
*/
public function testCreateNodeDefinitionTemplateEmpty() {
$ntm = $this->getNodeTypeManager();
Expand Down
10 changes: 5 additions & 5 deletions tests/Jackalope/NodeType/NodeTypeManagerTest.php
Expand Up @@ -13,7 +13,7 @@ public function setUp() {
}

/**
* @covers jackalope\NodeType\NodeTypeManager::getNodeType
* @covers Jackalope\NodeType\NodeTypeManager::getNodeType
*/
public function testGetNodeType() {
$nt = $this->ntm->getNodeType('nt:file');
Expand All @@ -27,8 +27,8 @@ public function testGetNodeType() {
}

/**
* @covers jackalope\NodeType\NodeTypeManager::getDeclaredSubtypes
* @covers jackalope\NodeType\NodeTypeManager::getSubtypes
* @covers Jackalope\NodeType\NodeTypeManager::getDeclaredSubtypes
* @covers Jackalope\NodeType\NodeTypeManager::getSubtypes
*/
public function testTypeHierarchies() {
$nt = $this->ntm->getNodeType('nt:file');
Expand All @@ -40,7 +40,7 @@ public function testTypeHierarchies() {
}

/**
* @covers jackalope\NodeType\NodeTypeManager::hasNodeType
* @covers Jackalope\NodeType\NodeTypeManager::hasNodeType
*/
public function testHasNodeType() {
$this->assertTrue($this->ntm->hasNodeType('nt:folder'), 'manager claimed to not know about nt:folder');
Expand All @@ -63,7 +63,7 @@ public function testCountTypeClasses() {
}

/**
* @covers jackalope\NodeType\NodeTypeManager::createNodeTypeTemplate
* @covers Jackalope\NodeType\NodeTypeManager::createNodeTypeTemplate
*/
public function testCreateNodeTypeTemplate() {
$ntm = $this->getNodeTypeManager();
Expand Down
2 changes: 1 addition & 1 deletion tests/Jackalope/NodeType/NodeTypeTemplateTest.php
Expand Up @@ -7,7 +7,7 @@
class NodeTypeTemplateTest extends TestCase
{
/**
* @covers jackalope\NodeType\NodeTypeTemplate
* @covers Jackalope\NodeType\NodeTypeTemplate
*/
public function testCreateNodeTypeTemplateEmpty() {
$ntm = $this->getNodeTypeManager();
Expand Down
Expand Up @@ -7,7 +7,7 @@
class PropertyDefinitionTemplateTest extends TestCase
{
/**
* @covers jackalope\NodeType\PropertyDefinitionTemplate::__construct
* @covers Jackalope\NodeType\PropertyDefinitionTemplate::__construct
*/
public function testCreatePropertyDefinitionTemplateEmpty() {
$ntm = $this->getNodeTypeManager();
Expand Down
4 changes: 2 additions & 2 deletions tests/Jackalope/ObjectManagerTest.php
Expand Up @@ -54,8 +54,8 @@ public function testNormalizePathUUID() {

/**
* @dataProvider dataproviderAbsolutePath
* @covers \jackalope\ObjectManager::absolutePath
* @covers \jackalope\ObjectManager::normalizePath
* @covers \Jackalope\ObjectManager::absolutePath
* @covers \Jackalope\ObjectManager::normalizePath
*/
public function testAbsolutePath($inputRoot, $inputRelPath, $output) {
$om = new \jackalope\ObjectManager($this->getTransportStub('/jcr:root'), $this->getSessionMock());
Expand Down

0 comments on commit a6faaf3

Please sign in to comment.