Files
PhpSpreadsheet/tests/PhpSpreadsheetTests/Calculation/Functions/Web/UrlEncodeTest.php
T
Adrien Crivelli 1b05dfab8b Rector AddParamTypeBasedOnPHPUnitDataProviderRector
And quite a bit more manual changes. The idea is that typing of our
tests can be a bit more loose, so we assume PHPDoc is mostly correct. If
that happens to be wrong, it should be caught by the tests themselves.
2023-09-07 17:00:24 +08:00

24 lines
578 B
PHP

<?php
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\Web;
use PhpOffice\PhpSpreadsheet\Calculation\Web\Service;
use PHPUnit\Framework\TestCase;
class UrlEncodeTest extends TestCase
{
/**
* @dataProvider providerURLENCODE
*/
public function testURLENCODE(string $expectedResult, mixed $text): void
{
$result = Service::urlEncode($text);
self::assertSame($expectedResult, $result);
}
public static function providerURLENCODE(): array
{
return require 'tests/data/Calculation/Web/URLENCODE.php';
}
}