/**
  * @dataProvider provideInvalidSenderAddressException
  */
 public function testValidateSenderAddressException($calculatorOptions, $address)
 {
     $this->setExpectedException(ViolationException::class, 'Can not send a package from this country.');
     $calculator = new IParcelHandler($calculatorOptions);
     $calculator->validateSenderAddress($address);
 }