/**
  * @test
  * @return null
  */
 public function shouldReturnConfiguration()
 {
     // given
     $this->httpClientMock->expects($this->once())->method('getConfiguration')->will($this->returnValue($this->configurationMock));
     // when
     $configuration = $this->client->getConfiguration();
     // then
     $this->assertSame($this->configurationMock, $configuration);
 }