PATH:
home
/
centosnipponia
/
public_html
/
msg
/
vendor
/
microsoft
/
microsoft-graph
/
tests
/
Http
<?php namespace Microsoft\Graph\Http\Test; use GuzzleHttp\Client; use GuzzleHttp\Handler\MockHandler; use GuzzleHttp\HandlerStack; class MockClientFactory { /** * Creates a mock Guzzle client with optional mock responses * * @param array $clientConfig - Guzzle client Request options * @param array $mockResponses - Accepts \GuzzleHttp\Psr7\Response and \GuzzleHttp\Exception * @return \GuzzleHttp\Client */ public static function create($clientConfig = [], $mockResponses = []) { if ($mockResponses) { $stack = HandlerStack::create(new MockHandler($mockResponses)); $clientConfig['handler'] = $stack; return new Client($clientConfig); } return new Client($clientConfig); } }
[+]
..
[-] GraphCollectionRequestTest.php
[edit]
[-] GraphRequestTest.php
[edit]
[-] GraphResponseTest.php
[edit]
[-] HttpTest.php
[edit]
[-] MockClientFactory.php
[edit]
[-] StreamTest.php
[edit]
[-] .htaccess.disabled
[edit]