Files
Phraseanet/lib/unitTest/databox/databox_statusTest.php
Romain Neutron 4c5b7eb658 V 3.5 RC 1
2011-12-05 00:23:28 +01:00

175 lines
3.8 KiB
PHP

<?php
require_once dirname(__FILE__) . '/../PhraseanetPHPUnitAbstract.class.inc';
/**
* Test class for databox_status.
* Generated by PHPUnit on 2011-11-03 at 15:21:23.
*/
class databox_statusTest extends PhraseanetPHPUnitAbstract
{
/**
* @var databox_status
*/
protected $object;
protected $databox;
public function setUp()
{
$this->databox = self::$record_1->get_databox();
$this->object = $this->databox->get_statusbits();
}
public function testGetStatus()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
public function testGetDisplayStatus()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetSearchStatus().
*/
public function testGetSearchStatus()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetPath().
*/
public function testGetPath()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetUrl().
*/
public function testGetUrl()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testDeleteStatus().
*/
public function testDeleteStatus()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testUpdateStatus().
*/
public function testUpdateStatus()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testDeleteIcon().
*/
public function testDeleteIcon()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testUpdateIcon().
*/
public function testUpdateIcon()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testOperation_and().
*/
public function testOperation_and()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testOperation_and_not().
*/
public function testOperation_and_not()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testOperation_or().
*/
public function testOperation_or()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testDec2bin().
*/
public function testDec2bin()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testHex2bin().
*/
public function testHex2bin()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
}
?>