mirror of
https://github.com/silverstripe/silverstripe-behat-extension
synced 2024-10-22 17:05:32 +02:00
23 lines
460 B
Scheme
23 lines
460 B
Scheme
<?php
|
|
|
|
namespace $Namespace;
|
|
|
|
use SilverStripe\\BehatExtension\\Context\\SilverStripeContext;
|
|
|
|
/**
|
|
* Default context for this module
|
|
*/
|
|
class FeatureContext extends SilverStripeContext
|
|
{
|
|
//
|
|
// Place your definition and hook methods here:
|
|
//
|
|
// /**
|
|
// * @Given /^I have done something with "([^"]*)"$/
|
|
// */
|
|
// public function iHaveDoneSomethingWith($argument) {
|
|
// assert($argument);
|
|
// }
|
|
//
|
|
}
|