Created
May 17, 2018 05:25
-
-
Save badri/3c2b649e4e6e7fc05947ee57aa43c815 to your computer and use it in GitHub Desktop.
Behat output
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- Failed scenarios: | |
features/archive/sessions.feature:80 | |
features/discussions/privacy.feature:25 | |
125 scenarios (100 passed, 2 failed, 23 undefined) | |
1255 steps (1096 passed, 2 failed, 59 undefined, 98 skipped) | |
15m6.36s (70.64Mb) | |
--- FeatureContext has missing steps. Define them with these snippets: | |
/** | |
* @Given :arg1 :arg2 entities: | |
*/ | |
public function entities($arg1, $arg2, TableNode $table) | |
{ | |
throw new PendingException(); | |
} | |
/** | |
* @Given a :arg1 entity: | |
*/ | |
public function aEntity($arg1, TableNode $table) | |
{ | |
throw new PendingException(); | |
} | |
/** | |
* @Given I am viewing an :arg1 :arg2 entity: | |
*/ | |
public function iAmViewingAnEntity($arg1, $arg2, TableNode $table) | |
{ | |
throw new PendingException(); | |
} | |
/** | |
* @When Drupal sends an email: | |
*/ | |
public function drupalSendsAnEmail(TableNode $table) | |
{ | |
throw new PendingException(); | |
} | |
/** | |
* @When Drupal sends a mail: | |
*/ | |
public function drupalSendsAMail(TableNode $table) | |
{ | |
throw new PendingException(); | |
} | |
/** | |
* @Then mails have been sent: | |
*/ | |
public function mailsHaveBeenSent(TableNode $table) | |
{ | |
throw new PendingException(); | |
} | |
/** | |
* @Then new email is sent: | |
*/ | |
public function newEmailIsSent(TableNode $table) | |
{ | |
throw new PendingException(); | |
} | |
/** | |
* @Then a mail has been sent to :arg1 | |
*/ | |
public function aMailHasBeenSentTo($arg1) | |
{ | |
throw new PendingException(); | |
} | |
/** | |
* @Then a mail has been sent to :arg1: | |
*/ | |
public function aMailHasBeenSentTo2($arg1, TableNode $table) | |
{ | |
throw new PendingException(); | |
} | |
/** | |
* @Then an email has been sent with the subject :arg1 | |
*/ | |
public function anEmailHasBeenSentWithTheSubject($arg1) | |
{ | |
throw new PendingException(); | |
} | |
/** | |
* @Then emails have been sent with the subject :arg1: | |
*/ | |
public function emailsHaveBeenSentWithTheSubject($arg1, TableNode $table) | |
{ | |
throw new PendingException(); | |
} | |
/** | |
* @Then a mail has been sent to :arg1 with the subject :arg2 | |
*/ | |
public function aMailHasBeenSentToWithTheSubject($arg1, $arg2) | |
{ | |
throw new PendingException(); | |
} | |
/** | |
* @Then emails have been sent to :arg1 with the subject :arg2: | |
*/ | |
public function emailsHaveBeenSentToWithTheSubject($arg1, $arg2, TableNode $table) | |
{ | |
throw new PendingException(); | |
} | |
/** | |
* @Then new mail is sent to fred: | |
*/ | |
public function newMailIsSentToFred(TableNode $table) | |
{ | |
throw new PendingException(); | |
} | |
/** | |
* @Then no mail has been sent | |
*/ | |
public function noMailHasBeenSent() | |
{ | |
throw new PendingException(); | |
} | |
/** | |
* @Then :arg2 new emails are sent with the subject :arg1 | |
*/ | |
public function newEmailsAreSentWithTheSubject($arg1, $arg2) | |
{ | |
throw new PendingException(); | |
} | |
/** | |
* @Then :arg3 mail has been sent to :arg1 with the subject :arg2 | |
*/ | |
public function mailHasBeenSentToWithTheSubject($arg1, $arg2, $arg3) | |
{ | |
throw new PendingException(); | |
} | |
/** | |
* @Then no new emails are sent | |
*/ | |
public function noNewEmailsAreSent() | |
{ | |
throw new PendingException(); | |
} | |
/** | |
* @Then no mail has been sent to :arg1 | |
*/ | |
public function noMailHasBeenSentTo($arg1) | |
{ | |
throw new PendingException(); | |
} | |
/** | |
* @When I follow the link to :arg1 from the mail with the subject :arg2 | |
*/ | |
public function iFollowTheLinkToFromTheMailWithTheSubject($arg1, $arg2) | |
{ | |
throw new PendingException(); | |
} | |
/** | |
* @Then no email has been sent | |
*/ | |
public function noEmailHasBeenSent() | |
{ | |
throw new PendingException(); | |
} | |
/** | |
* @Then a new email is sent: | |
*/ | |
public function aNewEmailIsSent(TableNode $table) | |
{ | |
throw new PendingException(); | |
} | |
/** | |
* @Then new emails are sent: | |
*/ | |
public function newEmailsAreSent(TableNode $table) | |
{ | |
throw new PendingException(); | |
} | |
/** | |
* @Then no new email is sent | |
*/ | |
public function noNewEmailIsSent() | |
{ | |
throw new PendingException(); | |
} | |
/** | |
* @When I follow the link to :arg1 from the email to Fred | |
*/ | |
public function iFollowTheLinkToFromTheEmailToFred($arg1) | |
{ | |
throw new PendingException(); | |
} | |
/** | |
* @Then new email is sent to :arg1: | |
*/ | |
public function newEmailIsSentTo($arg1, TableNode $table) | |
{ | |
throw new PendingException(); | |
} | |
/** | |
* @When I follow the link to :arg1 from the email to :arg2 | |
*/ | |
public function iFollowTheLinkToFromTheEmailTo($arg1, $arg2) | |
{ | |
throw new PendingException(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment