/**
  * Checks a login attempt where only the user login is typed,
  * but not the password
  *
  * CTV3-954
  * http://comunidadeexpresso.serpro.gov.br/testlink/linkto.php?tprojectPrefix=CTV3&item=testcase&id=CTV3-954
  *
  * - valid.user: a valid user login
  */
 public function test_CTV3_954_NoPassword()
 {
     $loginPage = new LoginPage($this);
     //load test data
     $VALID_USER = $this->getGlobalValue('user.1.login');
     $loginPage->typeUser($VALID_USER);
     $loginPage->clickLogin();
     $this->assertAlertTextEquals("Por favor, digite sua senha.", 'Problems with password not informed message');
     $this->dismissAlert();
 }