mirror of
https://github.com/e107inc/e107.git
synced 2025-08-13 18:14:26 +02:00
Preparation for merge with e107 repository
Moved all test files to e107_tests subdirectory
This commit is contained in:
125
e107_tests/tests/unit/e_userTest.php
Normal file
125
e107_tests/tests/unit/e_userTest.php
Normal file
@@ -0,0 +1,125 @@
|
||||
<?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()
|
||||
{
|
||||
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user