Files
Phraseanet/tests/databox/databox_subdefsStructureTest.php
Romain Neutron abd4a30885 Fix CS
2012-04-16 10:00:12 +02:00

83 lines
1.7 KiB
PHP

<?php
require_once __DIR__ . '/../PhraseanetPHPUnitAbstract.class.inc';
class databox_subdefsStructureTest extends PhraseanetPHPUnitAbstract
{
/**
* @var databox_subdefsStructure
*/
protected $object;
public function setUp()
{
}
/**
* Tears down the fixture, for example, closes a network connection.
* This method is called after a test is executed.
*/
public function tearDown()
{
}
/**
* @todo Implement testGetIterator().
*/
public function testGetIterator()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGet_subdef().
*/
public function testGet_subdef()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testDelete_subdef().
*/
public function testDelete_subdef()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testAdd_subdef().
*/
public function testAdd_subdef()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testSet_subdef().
*/
public function testSet_subdef()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
}