public static function SessionLimitPreventTestCase::getInfo in Session Limit 8
Same name in this branch
- 8 tests/session_limit.test \SessionLimitPreventTestCase::getInfo()
- 8 tests/SessionLimitPreventTestCase.php \Drupal\session_limit\SessionLimitPreventTestCase::getInfo()
Same name and namespace in other branches
- 6.2 tests/session_limit.test \SessionLimitPreventTestCase::getInfo()
- 7.2 tests/session_limit.test \SessionLimitPreventTestCase::getInfo()
- 2.x tests/session_limit.test \SessionLimitPreventTestCase::getInfo()
getInfo() returns properties that are displayed in the test selection form.
File
- tests/
session_limit.test, line 551 - Simpletest tests for session_limit.
Class
- SessionLimitPreventTestCase
- Session limit functionality when behaviour is to prevent login at limit.
Code
public static function getInfo() {
return array(
'name' => 'Session Limit Prevent Tests',
'description' => 'Ensure that the session limit module functions as expected when behaviour is set to prevent new sessions',
'group' => 'Session Limit',
);
}