blob: 3e71b6997d1692d98d97a740975f04b2bb57dfc2 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?php
/**
* @covers \UserNotLoggedIn
* @author Addshore
*/
class UserNotLoggedInTest extends MediaWikiIntegrationTestCase {
public function testConstruction() {
$e = new UserNotLoggedIn();
$this->assertEquals( 'exception-nologin', $e->title );
$this->assertEquals( 'exception-nologin-text', $e->msg );
$this->assertEquals( [], $e->params );
}
}
|