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

61 lines
1.1 KiB
PHP

<?php
require_once __DIR__ . '/../PhraseanetPHPUnitAbstract.class.inc';
class databox_cguTest extends PhraseanetPHPUnitAbstract
{
/**
* @var databox_cgu
*/
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 testAskAgreement().
*/
public function testAskAgreement()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testDenyCgus().
*/
public function testDenyCgus()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
/**
* @todo Implement testGetHome().
*/
public function testGetHome()
{
// Remove the following lines when you implement this test.
$this->markTestIncomplete(
'This test has not been implemented yet.'
);
}
}