/**
  * @test
  */
 public function it_returns_the_soap_options()
 {
     $expected = ['key 1' => 'value'];
     $client = new Client($this->buildConfig(['soap_options' => $expected]));
     $this->assertEquals($expected, $client->getSoapOptions());
 }