PhpSpreadsheet/tests/PhpSpreadsheetTests/Calculation/Functions/TextData/CharTest.php

27 lines
614 B
PHP
Raw Normal View History

<?php
namespace PhpOffice\PhpSpreadsheetTests\Calculation\Functions\TextData;
use PhpOffice\PhpSpreadsheet\Calculation\TextData;
use PHPUnit\Framework\TestCase;
class CharTest extends TestCase
{
/**
* @dataProvider providerCHAR
*
* @param mixed $expectedResult
* @param $character
*/
2020-05-18 04:49:57 +00:00
public function testCHAR($expectedResult, $character): void
{
$result = TextData::CHARACTER($character);
2020-05-18 04:49:57 +00:00
self::assertEquals($expectedResult, $result);
}
public function providerCHAR()
{
return require 'tests/data/Calculation/TextData/CHAR.php';
}
}