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