Add functional tests that will create a PHP Soap Server and expose API and run functional tests against that API. Tests should use most of our Context steps and we should not depend on any third party API to run tests on as SOAP is pretty Enterprise and there are not many public APIs supported that we can use and no-one can rely on them for our tests as they can potentially change.
Behat extensions usually have their own steps to create PHP files and to run the setup of a lightweight server, we can do the same.
Here ia great example how WebApiExtension does it:
https://github.com/Behat/WebApiExtension/tree/master/features
Add functional tests that will create a PHP Soap Server and expose API and run functional tests against that API. Tests should use most of our Context steps and we should not depend on any third party API to run tests on as SOAP is pretty Enterprise and there are not many public APIs supported that we can use and no-one can rely on them for our tests as they can potentially change.
Behat extensions usually have their own steps to create PHP files and to run the setup of a lightweight server, we can do the same.
Here ia great example how WebApiExtension does it:
https://github.com/Behat/WebApiExtension/tree/master/features