Files
PhpSpreadsheet/tests/PhpSpreadsheetTests/Calculation/Functions/TextData/LenTest.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
606 B
PHP

<?php
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\TextData;
use PhpOffice\PhpSpreadsheet\Calculation\TextData;
use PHPUnit\Framework\TestCase;
class LenTest extends TestCase
{
/**
* @dataProvider providerLEN
*
* @param mixed $expectedResult
* @param mixed $value
*/
public function testLEN($expectedResult, $value): void
{
$result = TextData::STRINGLENGTH($value);
self::assertEquals($expectedResult, $result);
}
public function providerLEN()
{
return require 'tests/data/Calculation/TextData/LEN.php';
}
}