You are here

protected function CommerceCheckoutLoginUserLoginTest::testUnknownEmailIsRejectedDuringLogin in Commerce Checkout Login 7.2

File

tests/CommerceCheckoutLoginUserLoginTest.test, line 42
Contains tests for the user login functionality.

Class

CommerceCheckoutLoginUserLoginTest
Checkout login test class.

Code

protected function testUnknownEmailIsRejectedDuringLogin() {
  $mail = $this
    ->generateEmail();
  $this
    ->postLoginForm($mail, $this
    ->randomString());
  $this
    ->assertUnknownEmailOrPasswordMessage($mail);
}