/**
  * @dataProvider provideCalculateException
  */
 public function testGetPriceException($exceptionMessage, $weight)
 {
     $this->setExpectedException(ViolationException::class, $exceptionMessage);
     $zoneCalculator = new ZoneCalculator(['name' => 1, 'weight_prices' => []]);
     $zoneCalculator->calculate($weight);
 }