Viewing file: FeatureContext.php (1.66 KB) -rw-rw-r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?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_once('lib/paymentwall.php');
// // 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 it's own context object. * * @param array $parameters context parameters (set them up through behat.yml) */ public function __construct(array $parameters) { $this->useContext('pingback', new PingbackContext(array())); $this->useContext('widget', new WidgetContext(array())); $this->useContext('charge', new ChargeContext(array())); }
/** * @Given /^Public key "([^"]*)"$/ */ public function publicKey($publicKey) { Paymentwall_Base::setAppKey($publicKey); }
/** * @Given /^Secret key "([^"]*)"$/ */ public function secretKey($secretKey) { Paymentwall_Base::setSecretKey($secretKey); }
/** * @Given /^Private key "([^"]*)"$/ */ public function privateKey($privateKey) { Paymentwall_Config::getInstance()->set(array( 'private_key' => $privateKey )); }
/** * @Given /^API type "([^"]*)"$/ */ public function apiType($apiType) { Paymentwall_Base::setApiType($apiType); $this->apiType = $apiType; } }
|