1
0
Fork 0
mirror of https://github.com/Oreolek/yii2-nested-sets.git synced 2024-06-26 03:30:46 +03:00

Removed @cover annotation from unit tests since its fully automated

This commit is contained in:
Alexander Kochetov 2015-01-04 09:01:56 +03:00
parent 834b910316
commit cd0f7aa64f
2 changed files with 0 additions and 141 deletions

View file

@ -16,11 +16,6 @@ use yii\helpers\ArrayHelper;
*/ */
class NestedSetsBehaviorTest extends DatabaseTestCase class NestedSetsBehaviorTest extends DatabaseTestCase
{ {
/**
* @covers \creocoder\nestedsets\NestedSetsBehavior::makeRoot
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeInsert
* @covers \creocoder\nestedsets\NestedSetsBehavior::afterInsert
*/
public function testMakeNewRoot() public function testMakeNewRoot()
{ {
$node = new Tree(); $node = new Tree();
@ -41,8 +36,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::makeRoot
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeInsert
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testMakeNewRootExceptionIsRaisedWhenTreeAttributeIsFalseAndRootIsExists() public function testMakeNewRootExceptionIsRaisedWhenTreeAttributeIsFalseAndRootIsExists()
@ -56,11 +49,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
$node->makeRoot(); $node->makeRoot();
} }
/**
* @covers \creocoder\nestedsets\NestedSetsBehavior::prependTo
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeInsert
* @covers \creocoder\nestedsets\NestedSetsBehavior::afterInsert
*/
public function testPrependNewTo() public function testPrependNewTo()
{ {
$dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml'); $dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml');
@ -87,8 +75,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::prependTo
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeInsert
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testPrependNewToExceptionIsRaisedWhenTargetIsNewRecord() public function testPrependNewToExceptionIsRaisedWhenTargetIsNewRecord()
@ -98,8 +84,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::prependTo
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeInsert
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testPrependNewToExceptionIsRaisedWhenTargetIsSame() public function testPrependNewToExceptionIsRaisedWhenTargetIsSame()
@ -111,11 +95,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
$node->prependTo(Tree::findOne(9)); $node->prependTo(Tree::findOne(9));
} }
/**
* @covers \creocoder\nestedsets\NestedSetsBehavior::appendTo
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeInsert
* @covers \creocoder\nestedsets\NestedSetsBehavior::afterInsert
*/
public function testAppendNewTo() public function testAppendNewTo()
{ {
$dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml'); $dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml');
@ -142,8 +121,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::appendTo
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeInsert
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testAppendNewToExceptionIsRaisedWhenTargetIsNewRecord() public function testAppendNewToExceptionIsRaisedWhenTargetIsNewRecord()
@ -153,8 +130,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::appendTo
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeInsert
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testAppendNewToExceptionIsRaisedWhenTargetIsSame() public function testAppendNewToExceptionIsRaisedWhenTargetIsSame()
@ -166,11 +141,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
$node->appendTo(Tree::findOne(9)); $node->appendTo(Tree::findOne(9));
} }
/**
* @covers \creocoder\nestedsets\NestedSetsBehavior::insertBefore
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeInsert
* @covers \creocoder\nestedsets\NestedSetsBehavior::afterInsert
*/
public function testInsertNewBefore() public function testInsertNewBefore()
{ {
$dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml'); $dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml');
@ -197,8 +167,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::insertBefore
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeInsert
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testInsertNewBeforeExceptionIsRaisedWhenTargetIsNewRecord() public function testInsertNewBeforeExceptionIsRaisedWhenTargetIsNewRecord()
@ -208,8 +176,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::insertBefore
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeInsert
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testInsertNewBeforeExceptionIsRaisedWhenTargetIsSame() public function testInsertNewBeforeExceptionIsRaisedWhenTargetIsSame()
@ -222,8 +188,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::insertBefore
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeInsert
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testInsertNewBeforeExceptionIsRaisedWhenTargetIsRoot() public function testInsertNewBeforeExceptionIsRaisedWhenTargetIsRoot()
@ -235,11 +199,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
$node->insertBefore(Tree::findOne(1)); $node->insertBefore(Tree::findOne(1));
} }
/**
* @covers \creocoder\nestedsets\NestedSetsBehavior::insertAfter
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeInsert
* @covers \creocoder\nestedsets\NestedSetsBehavior::afterInsert
*/
public function testInsertNewAfter() public function testInsertNewAfter()
{ {
$dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml'); $dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml');
@ -266,8 +225,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::insertAfter
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeInsert
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testInsertNewAfterExceptionIsRaisedWhenTargetIsNewRecord() public function testInsertNewAfterExceptionIsRaisedWhenTargetIsNewRecord()
@ -277,8 +234,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::insertAfter
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeInsert
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testInsertNewAfterExceptionIsRaisedWhenTargetIsSame() public function testInsertNewAfterExceptionIsRaisedWhenTargetIsSame()
@ -291,8 +246,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::insertAfter
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeInsert
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testInsertNewAfterExceptionIsRaisedWhenTargetIsRoot() public function testInsertNewAfterExceptionIsRaisedWhenTargetIsRoot()
@ -304,11 +257,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
$node->insertAfter(Tree::findOne(1)); $node->insertAfter(Tree::findOne(1));
} }
/**
* @covers \creocoder\nestedsets\NestedSetsBehavior::makeRoot
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeUpdate
* @covers \creocoder\nestedsets\NestedSetsBehavior::afterUpdate
*/
public function testMakeExistsRoot() public function testMakeExistsRoot()
{ {
$dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/multiple-roots-tree.xml'); $dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/multiple-roots-tree.xml');
@ -323,8 +271,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::makeRoot
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeUpdate
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testMakeExistsRootExceptionIsRaisedWhenTreeAttributeIsFalse() public function testMakeExistsRootExceptionIsRaisedWhenTreeAttributeIsFalse()
@ -337,8 +283,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::makeRoot
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeUpdate
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testMakeExistsRootExceptionIsRaisedWhenItsRoot() public function testMakeExistsRootExceptionIsRaisedWhenItsRoot()
@ -350,11 +294,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
$node->makeRoot(); $node->makeRoot();
} }
/**
* @covers \creocoder\nestedsets\NestedSetsBehavior::prependTo
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeUpdate
* @covers \creocoder\nestedsets\NestedSetsBehavior::afterUpdate
*/
public function testPrependExistsTo() public function testPrependExistsTo()
{ {
$dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml'); $dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml');
@ -404,8 +343,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::prependTo
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeUpdate
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testPrependExistsToExceptionIsRaisedWhenTargetIsNewRecord() public function testPrependExistsToExceptionIsRaisedWhenTargetIsNewRecord()
@ -418,8 +355,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::prependTo
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeUpdate
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testPrependExistsToExceptionIsRaisedWhenTargetIsSame() public function testPrependExistsToExceptionIsRaisedWhenTargetIsSame()
@ -432,8 +367,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::prependTo
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeUpdate
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testPrependExistsToExceptionIsRaisedWhenTargetIsChild() public function testPrependExistsToExceptionIsRaisedWhenTargetIsChild()
@ -445,11 +378,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
$node->prependTo(Tree::findOne(11)); $node->prependTo(Tree::findOne(11));
} }
/**
* @covers \creocoder\nestedsets\NestedSetsBehavior::appendTo
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeUpdate
* @covers \creocoder\nestedsets\NestedSetsBehavior::afterUpdate
*/
public function testAppendExistsTo() public function testAppendExistsTo()
{ {
$dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml'); $dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml');
@ -499,8 +427,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::appendTo
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeUpdate
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testAppendExistsToExceptionIsRaisedWhenTargetIsNewRecord() public function testAppendExistsToExceptionIsRaisedWhenTargetIsNewRecord()
@ -513,8 +439,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::appendTo
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeUpdate
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testAppendExistsToExceptionIsRaisedWhenTargetIsSame() public function testAppendExistsToExceptionIsRaisedWhenTargetIsSame()
@ -527,8 +451,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::appendTo
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeUpdate
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testAppendExistsToExceptionIsRaisedWhenTargetIsChild() public function testAppendExistsToExceptionIsRaisedWhenTargetIsChild()
@ -540,11 +462,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
$node->appendTo(Tree::findOne(11)); $node->appendTo(Tree::findOne(11));
} }
/**
* @covers \creocoder\nestedsets\NestedSetsBehavior::insertBefore
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeUpdate
* @covers \creocoder\nestedsets\NestedSetsBehavior::afterUpdate
*/
public function testInsertExistsBefore() public function testInsertExistsBefore()
{ {
$dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml'); $dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml');
@ -594,8 +511,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::insertBefore
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeUpdate
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testInsertExistsBeforeExceptionIsRaisedWhenTargetIsNewRecord() public function testInsertExistsBeforeExceptionIsRaisedWhenTargetIsNewRecord()
@ -608,8 +523,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::insertBefore
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeUpdate
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testInsertExistsBeforeExceptionIsRaisedWhenTargetIsSame() public function testInsertExistsBeforeExceptionIsRaisedWhenTargetIsSame()
@ -622,8 +535,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::insertBefore
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeUpdate
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testInsertExistsBeforeExceptionIsRaisedWhenTargetIsChild() public function testInsertExistsBeforeExceptionIsRaisedWhenTargetIsChild()
@ -635,11 +546,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
$node->insertBefore(Tree::findOne(11)); $node->insertBefore(Tree::findOne(11));
} }
/**
* @covers \creocoder\nestedsets\NestedSetsBehavior::insertAfter
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeUpdate
* @covers \creocoder\nestedsets\NestedSetsBehavior::afterUpdate
*/
public function testInsertExistsAfter() public function testInsertExistsAfter()
{ {
$dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml'); $dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml');
@ -689,8 +595,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::insertAfter
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeUpdate
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testInsertExistsAfterExceptionIsRaisedWhenTargetIsNewRecord() public function testInsertExistsAfterExceptionIsRaisedWhenTargetIsNewRecord()
@ -703,8 +607,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::insertAfter
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeUpdate
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testInsertExistsAfterExceptionIsRaisedWhenTargetIsSame() public function testInsertExistsAfterExceptionIsRaisedWhenTargetIsSame()
@ -717,8 +619,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::insertAfter
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeUpdate
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testInsertExistsAfterExceptionIsRaisedWhenTargetIsChild() public function testInsertExistsAfterExceptionIsRaisedWhenTargetIsChild()
@ -730,11 +630,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
$node->insertAfter(Tree::findOne(11)); $node->insertAfter(Tree::findOne(11));
} }
/**
* @covers \creocoder\nestedsets\NestedSetsBehavior::deleteWithChildren
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeDelete
* @covers \creocoder\nestedsets\NestedSetsBehavior::afterDelete
*/
public function testDeleteWithChildren() public function testDeleteWithChildren()
{ {
$dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml'); $dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml');
@ -755,8 +650,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::deleteWithChildren
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeDelete
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testDeleteWithChildrenExceptionIsRaisedWhenNodeIsNewRecord() public function testDeleteWithChildrenExceptionIsRaisedWhenNodeIsNewRecord()
@ -765,10 +658,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
$node->deleteWithChildren(); $node->deleteWithChildren();
} }
/**
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeDelete
* @covers \creocoder\nestedsets\NestedSetsBehavior::afterDelete
*/
public function testDelete() public function testDelete()
{ {
$dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml'); $dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml');
@ -789,7 +678,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeDelete
* @expectedException \yii\db\Exception * @expectedException \yii\db\Exception
*/ */
public function testDeleteExceptionIsRaisedWhenNodeIsNewRecord() public function testDeleteExceptionIsRaisedWhenNodeIsNewRecord()
@ -799,7 +687,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeDelete
* @expectedException \yii\base\NotSupportedException * @expectedException \yii\base\NotSupportedException
*/ */
public function testDeleteExceptionIsRaisedWhenNodeIsRoot() public function testDeleteExceptionIsRaisedWhenNodeIsRoot()
@ -812,7 +699,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
} }
/** /**
* @covers \creocoder\nestedsets\NestedSetsBehavior::beforeInsert
* @expectedException \yii\base\NotSupportedException * @expectedException \yii\base\NotSupportedException
*/ */
public function testExceptionIsRaisedWhenInsertIsCalled() public function testExceptionIsRaisedWhenInsertIsCalled()
@ -823,9 +709,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
$node->insert(); $node->insert();
} }
/**
* @covers \creocoder\nestedsets\NestedSetsBehavior::children
*/
public function testChildren() public function testChildren()
{ {
$dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml'); $dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml');
@ -865,9 +748,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
$this->assertDataSetsEqual($expectedDataSet, $dataSet); $this->assertDataSetsEqual($expectedDataSet, $dataSet);
} }
/**
* @covers \creocoder\nestedsets\NestedSetsBehavior::parents
*/
public function testParents() public function testParents()
{ {
$dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml'); $dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml');
@ -907,9 +787,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
$this->assertDataSetsEqual($expectedDataSet, $dataSet); $this->assertDataSetsEqual($expectedDataSet, $dataSet);
} }
/**
* @covers \creocoder\nestedsets\NestedSetsBehavior::prev
*/
public function testPrev() public function testPrev()
{ {
$dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml'); $dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml');
@ -931,9 +808,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
$this->assertDataSetsEqual($expectedDataSet, $dataSet); $this->assertDataSetsEqual($expectedDataSet, $dataSet);
} }
/**
* @covers \creocoder\nestedsets\NestedSetsBehavior::next
*/
public function testNext() public function testNext()
{ {
$dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml'); $dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml');
@ -955,9 +829,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
$this->assertDataSetsEqual($expectedDataSet, $dataSet); $this->assertDataSetsEqual($expectedDataSet, $dataSet);
} }
/**
* @covers \creocoder\nestedsets\NestedSetsBehavior::isChildOf
*/
public function testIsChildOf() public function testIsChildOf()
{ {
$dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/multiple-roots-tree.xml'); $dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/multiple-roots-tree.xml');
@ -970,9 +841,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
$this->assertFalse($node->isChildOf(MultipleRootsTree::findOne(1))); $this->assertFalse($node->isChildOf(MultipleRootsTree::findOne(1)));
} }
/**
* @covers \creocoder\nestedsets\NestedSetsBehavior::isLeaf
*/
public function testIsLeaf() public function testIsLeaf()
{ {
$dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml'); $dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml');
@ -982,9 +850,6 @@ class NestedSetsBehaviorTest extends DatabaseTestCase
$this->assertFalse(Tree::findOne(1)->isLeaf()); $this->assertFalse(Tree::findOne(1)->isLeaf());
} }
/**
* @covers \creocoder\nestedsets\NestedSetsBehavior::isRoot
*/
public function testIsRoot() public function testIsRoot()
{ {
$dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml'); $dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml');

View file

@ -16,9 +16,6 @@ use yii\helpers\ArrayHelper;
*/ */
class NestedSetsQueryBehaviorTest extends DatabaseTestCase class NestedSetsQueryBehaviorTest extends DatabaseTestCase
{ {
/**
* @covers \creocoder\nestedsets\NestedSetsQueryBehavior::roots
*/
public function testRoots() public function testRoots()
{ {
$dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml'); $dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml');
@ -38,9 +35,6 @@ class NestedSetsQueryBehaviorTest extends DatabaseTestCase
$this->assertDataSetsEqual($expectedDataSet, $dataSet); $this->assertDataSetsEqual($expectedDataSet, $dataSet);
} }
/**
* @covers \creocoder\nestedsets\NestedSetsQueryBehavior::leaves
*/
public function testLeaves() public function testLeaves()
{ {
$dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml'); $dataSet = $this->createFlatXMLDataSet(__DIR__ . '/datasets/tree.xml');