Files
PhpSpreadsheet/tests/PhpSpreadsheetTests/Calculation/Functions/TextData/TrimTest.php
T
Mark Baker dd74dd7fcf Let's start with some appeasements to phpstan, just to reduce the baseline (#1983)
* Let's start with some appeasements to phpstan, just to reduce the baseline
* Appeasements to phpstan, taking the number of reported errors down to just 61
2021-04-03 17:10:40 +02:00

27 lines
621 B
PHP

<?php
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\TextData;
use PhpOffice\PhpSpreadsheet\Calculation\TextData;
use PHPUnit\Framework\TestCase;
class TrimTest extends TestCase
{
/**
* @dataProvider providerTRIM
*
* @param mixed $expectedResult
* @param mixed $character
*/
public function testTRIM($expectedResult, $character): void
{
$result = TextData::TRIMSPACES($character);
self::assertEquals($expectedResult, $result);
}
public function providerTRIM()
{
return require 'tests/data/Calculation/TextData/TRIM.php';
}
}