Bolt\Tests\Users\UsersTest::testGetUserByUnknownUsername PHP Method

testGetUserByUnknownUsername() public method

    public function testGetUserByUnknownUsername()
    {
        // Setup test
        $users = $this->getMockUsers();
        // Run test
        $result = $users->getUser('anotheruser');
        // Check result
        $this->assertEquals(false, $result);
    }