phpmyadmin/test/classes/Gis/GisGeomTestCase.php
Maurício Meneghini Fauth 7fc96d6621
Call PHPUnit static methods using static calls
Backports #18907 to QA_5_2.

This makes merging QA_5_2 into master easier.
Changes done using Rector.

- #18907

Signed-off-by: Maurício Meneghini Fauth <mauricio@mfauth.net>
2024-10-12 14:28:22 -03:00

57 lines
1.4 KiB
PHP

<?php
/**
* Abstract parent class for all Gis<Geom_type> test classes
*/
declare(strict_types=1);
namespace PhpMyAdmin\Tests\Gis;
use PhpMyAdmin\Gis\GisGeometry;
use PhpMyAdmin\Gis\GisPolygon;
use PhpMyAdmin\Tests\AbstractTestCase;
/**
* Abstract parent class for all Gis<Geom_type> test classes
*/
abstract class GisGeomTestCase extends AbstractTestCase
{
/** @var GisGeometry */
protected $object;
/**
* test generateParams method
*
* @param string $wkt point in WKT form
* @param int|null $index index
* @param array $params expected output array
*
* @dataProvider providerForTestGenerateParams
*/
public function testGenerateParams(string $wkt, ?int $index, array $params): void
{
if ($index === null) {
self::assertEquals($params, $this->object->generateParams($wkt));
return;
}
/** @var GisPolygon $obj or another GisGeometry that supports this definition */
$obj = $this->object;
self::assertEquals($params, $obj->generateParams($wkt, $index));
}
/**
* test scaleRow method
*
* @param string $spatial spatial data of a row
* @param array $min_max expected results
*
* @dataProvider providerForTestScaleRow
*/
public function testScaleRow(string $spatial, array $min_max): void
{
self::assertEquals($min_max, $this->object->scaleRow($spatial));
}
}