aed27a0bed
Use the `PHPUnit\Framework\TestCase` notation instead of `PHPUnit_Framework_TestCase` while extending our TestCases. This will help us migrate to PHPUnit 6, that [no longer support snake case class names](https://github.com/sebastianbergmann/phpunit/blob/master/ChangeLog-6.0.md#changed-1).
51 lines
1.3 KiB
PHP
51 lines
1.3 KiB
PHP
<?php
|
|
|
|
namespace PhpOffice\PhpSpreadsheetTests\Chart;
|
|
|
|
use PhpOffice\PhpSpreadsheet\Chart\DataSeriesValues;
|
|
use PhpOffice\PhpSpreadsheet\Exception;
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
class DataSeriesValuesTest extends TestCase
|
|
{
|
|
public function testSetDataType()
|
|
{
|
|
$dataTypeValues = [
|
|
'Number',
|
|
'String',
|
|
];
|
|
|
|
$testInstance = new DataSeriesValues();
|
|
|
|
foreach ($dataTypeValues as $dataTypeValue) {
|
|
$result = $testInstance->setDataType($dataTypeValue);
|
|
self::assertTrue($result instanceof DataSeriesValues);
|
|
}
|
|
}
|
|
|
|
public function testSetInvalidDataTypeThrowsException()
|
|
{
|
|
$testInstance = new DataSeriesValues();
|
|
|
|
try {
|
|
$testInstance->setDataType('BOOLEAN');
|
|
} catch (Exception $e) {
|
|
self::assertEquals($e->getMessage(), 'Invalid datatype for chart data series values');
|
|
|
|
return;
|
|
}
|
|
$this->fail('An expected exception has not been raised.');
|
|
}
|
|
|
|
public function testGetDataType()
|
|
{
|
|
$dataTypeValue = 'String';
|
|
|
|
$testInstance = new DataSeriesValues();
|
|
$testInstance->setDataType($dataTypeValue);
|
|
|
|
$result = $testInstance->getDataType();
|
|
self::assertEquals($dataTypeValue, $result);
|
|
}
|
|
}
|