/** * @dataProvider calculateCropDataProvider */ public function testCalculateCropData($focal_point, $image_width, $image_height, $crop_width, $crop_height, $expected) { $this->assertSame($expected, FocalPointEffectBase::calculateCropData($focal_point, $image_width, $image_height, $crop_width, $crop_height)); }