public function testSetTimeout()
 {
     $transport = new Guzzle();
     $expectedTimeout = $this->faker->randomDigitNotNull();
     $transport->setTimeout($expectedTimeout);
     $this->assertEquals($expectedTimeout, $transport->getTimeout());
 }