function CasUserTestCase::testCaseInsensitiveLogin in CAS 7
Same name and namespace in other branches
- 6.3 cas.test \CasUserTestCase::testCaseInsensitiveLogin()
File
- ./
cas.test, line 455 - Tests for cas.module.
Class
- CasUserTestCase
- Test case to test user editing behavior.
Code
function testCaseInsensitiveLogin() {
$account = $this
->casCreateUser();
$this
->casLogin(strtoupper($account->cas_name));
$this
->assertLoggedIn($account);
}