예제 #1
0
 /**
  * Tests the JImage::sanitizeOffset method.
  *
  * @param   mixed    $input     The input offset.
  * @param   integer  $expected  The expected result offest.
  *
  * @return  void
  *
  * @dataProvider getSanitizeOffsetData
  * @since   11.3
  */
 public function testSanitizeOffset($input, $expected)
 {
     // Create a new JImageInspector.
     $image = new JImageInspector();
     // Validate the correct response.
     $this->assertEquals($expected, $image->sanitizeOffset($input));
 }