Example #1
0
 /**
  * @param $expected
  * @param $int
  * @dataProvider validateIntegerProvider
  */
 public function testValidateInteger($expected, $int)
 {
     $item = new Item();
     $this->assertEquals($expected, $item->validateInteger($int));
 }