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

61 lines
1.2 KiB
PHP

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