Current File : /home/jvzmxxx/wiki/tests/phpunit/includes/exception/UserNotLoggedInTest.php
<?php

/**
 * @covers UserNotLoggedIn
 * @author Addshore
 */
class UserNotLoggedInTest extends MediaWikiTestCase {

	public function testConstruction() {
		$e = new UserNotLoggedIn();
		$this->assertEquals( 'exception-nologin', $e->title );
		$this->assertEquals( 'exception-nologin-text', $e->msg );
		$this->assertEquals( [], $e->params );
	}

}