PhpSpreadsheet/tests/PhpSpreadsheet/Calculation/LookupRefTest.php
Adrien Crivelli 00657c906e
Reorganize unit tests
All code for unit tests is now under the `PhpSpreadsheet\Tests` namespace
which is autoloaded via composer mechanism. So there is no need for
`require()` anymore.

Also, tests were moved in `tests/` folder and phpunit should be executed from
the project root folder. This is to conform to the de facto standard, notably
in use in phpunit itself.
2016-08-14 02:29:33 +09:00

51 lines
1.3 KiB
PHP

<?php
namespace PhpSpreadsheet\Tests\Calculation;
/**
* Class LookupRefTest
* @package PHPExcel\Calculation
*/
class LookupRefTest extends \PHPUnit_Framework_TestCase
{
public function setUp()
{
\PHPExcel\Calculation\Functions::setCompatibilityMode(\PHPExcel\Calculation\Functions::COMPATIBILITY_EXCEL);
}
/**
* @dataProvider providerHLOOKUP
* @group fail19
*/
public function testHLOOKUP()
{
$args = func_get_args();
$expectedResult = array_pop($args);
$result = call_user_func_array(array('\PHPExcel\Calculation\LookupRef','HLOOKUP'), $args);
$this->assertEquals($expectedResult, $result);
}
public function providerHLOOKUP()
{
return new \PhpSpreadsheet\Tests\TestDataFileIterator('rawTestData/Calculation/LookupRef/HLOOKUP.data');
}
/**
* @dataProvider providerVLOOKUP
* @group fail19
*/
public function testVLOOKUP()
{
$args = func_get_args();
$expectedResult = array_pop($args);
$result = call_user_func_array(array('\PHPExcel\Calculation\LookupRef','VLOOKUP'), $args);
$this->assertEquals($expectedResult, $result);
}
public function providerVLOOKUP()
{
return new \PhpSpreadsheet\Tests\TestDataFileIterator('rawTestData/Calculation/LookupRef/VLOOKUP.data');
}
}