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

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