Skip to content
Snippets Groups Projects
Commit 2205a6a7 authored by Demian Katz's avatar Demian Katz
Browse files

Skip Symphony test when SoapClient is missing.

parent dac16a56
No related merge requests found
...@@ -56,6 +56,11 @@ class SymphonyTest extends \VuFind\Tests\TestCase ...@@ -56,6 +56,11 @@ class SymphonyTest extends \VuFind\Tests\TestCase
*/ */
public function testBadBaseUrl() public function testBadBaseUrl()
{ {
// Without SOAP functionality, we can't proceed:
if (!class_exists('SoapClient')) {
$this->markTestSkipped();
}
$this->driver->setConfig( $this->driver->setConfig(
array('WebServices' => array('baseURL' => 'invalid')) array('WebServices' => array('baseURL' => 'invalid'))
); );
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment