1
0
mirror of https://github.com/e107inc/e107.git synced 2025-08-12 17:44:37 +02:00
Files
php-e107/e107_tests/tests/unit/e_userTest.php
Deltik e49ee50d31 Preparation for merge with e107 repository
Moved all test files to e107_tests subdirectory
2019-11-27 11:18:53 -06:00

126 lines
1.3 KiB
PHP

<?php
/**
* e107 website system
*
* Copyright (C) 2008-2019 e107 Inc (e107.org)
* Released under the terms and conditions of the
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
*
*/
class e_userTest extends \Codeception\Test\Unit
{
protected $user;
protected function _before()
{
try
{
$this->user = $this->make('e_user');
}
catch (Exception $e)
{
$this->assertTrue(false, "Couldn't load e_user object");
}
}
public function testIsCurrent()
{
}
public function testGetProvider()
{
}
public function testLogoutAs()
{
}
public function testInitProvider()
{
}
public function testSetSessionData()
{
}
public function test__construct()
{
}
public function testLogin()
{
}
public function testLogout()
{
}
public function testHasProvider()
{
}
public function testSetProvider()
{
}
public function testGetSessionDataAs()
{
}
public function testLoginProvider()
{
}
public function testLoginAs()
{
}
public function testTryProviderSession()
{
}
public function testLoad()
{
}
public function testLoadAs()
{
}
public function testGetParentId()
{
}
public function testDestroy()
{
}
public function testHasSessionError()
{
}
}