/**
  * @dataProvider goodQuotationConfigs
  * @param Array $config
  * @param Array $result
  */
 public function testGetQuotation($config, $result)
 {
     $quotation = new Quotation($config);
     $this->assertInternalType('integer', $quotation->getQuotation());
     $this->assertSame($result['getQuotation'], $quotation->getQuotation());
 }