public function test_getAllUsersPreferences_whenLoginContainsUnderscore()
{
$user2 = 'user_Login2';
$this->api->addUser($user2, 'password', '*****@*****.**');
$this->api->setUserPreference($user2, 'myPreferenceName', 'valueForUser2');
$this->api->setUserPreference($user2, 'RandomNOTREQUESTED', 'RandomNOTREQUESTED');
$expected = array($user2 => array('myPreferenceName' => 'valueForUser2'));
$result = $this->api->getAllUsersPreferences(array('myPreferenceName', 'otherPreferenceHere', 'randomDoesNotExist'));
$this->assertSame($expected, $result);
}