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

81 lines
1.7 KiB
PHP

<?php
require_once __DIR__ . '/PhraseanetPHPUnitAbstract.class.inc';
class phraseadateTest extends PhraseanetPHPUnitAbstract
{
/**
* @var phraseadate
*/
protected $object;
/**
* @todo Implement testGetTime().
*/
public function testGetTime()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetDate().
*/
public function testGetDate()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetPrettyString().
*/
public function testGetPrettyString()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testFormat_mysql().
*/
public function testFormat_mysql()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testIsodateToDate().
*/
public function testIsodateToDate()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testDateToIsodate().
*/
public function testDateToIsodate()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
}