У меня есть Behat.yml default : context : parameters : user: xyz password : abc Также у меня есть файл FeatureContext.php, который извлекает значения из behat.yml через public function iExample($user, $password) { $userName=$this->getParameter($user); } Но это порождает ошибку, как "Call to undefined method FeatureContext::getParameter()" Я что-то упускаю ? .. Я также добавил autoload.php в FeatureContext.php […]
Я получаю эту ошибку при попытке запустить мои тесты поведения из командной строки. Полный вывод ошибки выглядит следующим образом: $ behat Feature: View a list of current custom tariffs In order to provide custom call pricing to customers As a user of the Voxbeam Admin site I expect to be able to correctly administrate a […]