* This file is licensed under the Affero General Public License version 3 or * later. * See the COPYING-README file. */ namespace OC\Http\Client; use GuzzleHttp\Client as GuzzleClient; /** * Class ClientServiceTest */ class ClientServiceTest extends \Test\TestCase { public function testNewClient() { $config = $this->getMock('\OCP\IConfig'); $certificateManager = $this->getMock('\OCP\ICertificateManager'); $expected = new Client($config, $certificateManager, new GuzzleClient()); $clientService = new ClientService($config, $certificateManager); $this->assertEquals($expected, $clientService->newClient()); } }