Merge "rdbms: avoid LoadBalancer::getConnection waste when using $groups"
[lhc/web/wiklou.git] / tests / phpunit / includes / exception / UserNotLoggedInTest.php
1 <?php
2
3 /**
4 * @covers UserNotLoggedIn
5 * @author Addshore
6 */
7 class UserNotLoggedInTest extends MediaWikiTestCase {
8
9 public function testConstruction() {
10 $e = new UserNotLoggedIn();
11 $this->assertEquals( 'exception-nologin', $e->title );
12 $this->assertEquals( 'exception-nologin-text', $e->msg );
13 $this->assertEquals( [], $e->params );
14 }
15
16 }