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

26 lines
574 B
PHP
Raw Normal View History

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