public static function SessionLimitLogoutTestCase::getInfo in Session Limit 2.x
Same name in this branch
- 2.x tests/session_limit.test \SessionLimitLogoutTestCase::getInfo()
- 2.x tests/SessionLimitLogoutTestCase.php \Drupal\session_limit\SessionLimitLogoutTestCase::getInfo()
Same name and namespace in other branches
- 8 tests/SessionLimitLogoutTestCase.php \Drupal\session_limit\SessionLimitLogoutTestCase::getInfo()
getInfo() returns properties that are displayed in the test selection form.
File
- tests/
SessionLimitLogoutTestCase.php, line 12
Class
- SessionLimitLogoutTestCase
- Session limit functions when expected behaviour is to logout oldest session.
Namespace
Drupal\session_limitCode
public static function getInfo() {
return array(
'name' => 'Session Limit Logout Tests',
'description' => 'Ensure that the session limit module functions as expected when behaviour is set to logout oldest session',
'group' => 'Session Limit',
);
}