diff --git a/tests/library/Class/WebService/SIGB/OrpheeServiceTest.php b/tests/library/Class/WebService/SIGB/OrpheeServiceTest.php index b1b87d49bbe32497fcef03f38bad29fcba250630..d64c4f844ab9f6e1f7de6e19450aefe335f9e3b7 100644 --- a/tests/library/Class/WebService/SIGB/OrpheeServiceTest.php +++ b/tests/library/Class/WebService/SIGB/OrpheeServiceTest.php @@ -1,4 +1,4 @@ -<?php +k<?php /** * Copyright (c) 2012, Agence Française Informatique (AFI). All rights reserved. * @@ -78,30 +78,6 @@ class OrpheeServiceGetServiceTest extends Storm_Test_ModelTestCase { public function clientWSDLShouldBeOrpheeWSDL() { $this->assertEquals('tests/fixtures/orphee.wsdl', $this->_orphee->getSearchClient()->wsdl); } - - - /** - * @group integration - * @test - */ - public function integrationTestNoticeWithRealServer() { - Class_WebService_SIGB_Orphee_Service::setSoapClientClass('Class_WebService_MappedSoapClient'); - $orphee = Class_WebService_SIGB_Orphee_Service::getService('http://opac3.pergame.net/bibliotheque-agglo-stomer.fr/userfiles/webservices/orphee.wsdl'); - $notice = $orphee->getNotice('frOr0493126904'); - $this->assertEquals('0493126904', $notice->getId()); - } - - - /** @disabledtest */ - public function integrationTestUserWithRealServer() { - Class_WebService_SIGB_Orphee_Service::setSoapClientClass('Class_WebService_MappedSoapClient'); - $orphee = Class_WebService_SIGB_Orphee_Service::getService('http://opac3.pergame.net/bibliotheque-agglo-stomer.fr/userfiles/webservices/orphee.wsdl'); - $emprunteur = $orphee->getEmprunteur(Class_Users::getLoader() - ->newInstanceWithId(2) - ->setLogin('90106000084125')); - $emprunteur->getEmprunts(); - $this->assertEquals('90211356', $emprunteur->getId()); - } }