diff --git a/module/VuFind/tests/ILS/Driver/SymphonyTest.php b/module/VuFind/tests/ILS/Driver/SymphonyTest.php index 857921a8239372f3d061a4b7391b6d212f075c0b..bf5e7d148263282b253e0b5684cec5eac856252b 100644 --- a/module/VuFind/tests/ILS/Driver/SymphonyTest.php +++ b/module/VuFind/tests/ILS/Driver/SymphonyTest.php @@ -56,6 +56,11 @@ class SymphonyTest extends \VuFind\Tests\TestCase */ public function testBadBaseUrl() { + // Without SOAP functionality, we can't proceed: + if (!class_exists('SoapClient')) { + $this->markTestSkipped(); + } + $this->driver->setConfig( array('WebServices' => array('baseURL' => 'invalid')) );