forked from dahabit/Laravel-4-Generators
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
123e9e9
commit 4350d0f
Showing
2 changed files
with
50 additions
and
1 deletion.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?php | ||
|
||
use Behat\Behat\Context\ClosuredContextInterface, | ||
Behat\Behat\Context\TranslatedContextInterface, | ||
Behat\Behat\Context\BehatContext, | ||
Behat\Behat\Exception\PendingException; | ||
use Behat\Gherkin\Node\PyStringNode, | ||
Behat\Gherkin\Node\TableNode; | ||
|
||
// | ||
// Require 3rd-party libraries here: | ||
// | ||
// require_once 'PHPUnit/Autoload.php'; | ||
// require_once 'PHPUnit/Framework/Assert/Functions.php'; | ||
// | ||
|
||
/** | ||
* Features context. | ||
*/ | ||
class FeatureContext extends BehatContext | ||
{ | ||
/** | ||
* Initializes context. | ||
* Every scenario gets its own context object. | ||
* | ||
* @param array $parameters context parameters (set them up through behat.yml) | ||
*/ | ||
public function __construct(array $parameters) | ||
{ | ||
// Initialize your context here | ||
} | ||
|
||
// | ||
// Place your definition and hook methods here: | ||
// | ||
// /** | ||
// * @Given /^I have done something with "([^"]*)"$/ | ||
// */ | ||
// public function iHaveDoneSomethingWith($argument) | ||
// { | ||
// doSomethingWith($argument); | ||
// } | ||
// | ||
} |