/**
  * @dataProvider rangeDataProvider
  **/
 public function testCreation($min, $max, $throwsException)
 {
     if ($throwsException) {
         $this->setExpectedException('WrongArgumentException');
     }
     $range = FloatRange::create($min, $max);
 }
 public function __construct()
 {
     $this->minMax = FloatRange::create(0, 0);
 }