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

Added unit tests base for NestedSetsQueryBehavior

This commit is contained in:
Alexander Kochetov 2015-01-03 16:18:21 +03:00
parent 0a99d1bdcd
commit bcc816c017

View file

@ -0,0 +1,30 @@
<?php
/**
* @link https://github.com/creocoder/yii2-nested-sets-behavior
* @copyright Copyright (c) 2015 Alexander Kochetov
* @license http://opensource.org/licenses/BSD-3-Clause
*/
namespace tests;
/**
* NestedSetsQueryBehaviorTest
*/
class NestedSetsQueryBehaviorTest extends DatabaseTestCase
{
/**
* @covers \creocoder\nestedsets\NestedSetsQueryBehavior::roots
*/
public function testRoots()
{
$this->markTestSkipped();
}
/**
* @covers \creocoder\nestedsets\NestedSetsQueryBehavior::leaf
*/
public function testLeaf()
{
$this->markTestSkipped();
}
}