Ejemplo n.º 1
0
 /**
  * @test
  */
 public function shouldSetHttpClient()
 {
     $config = $this->createConfiguration();
     $client = $this->createAdapterMockNeverCalled();
     $object = new Jobs($config);
     $object->setHttpClient($client);
     $this->assertSame($client, $object->getHttpClient());
 }