p2 project
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

37 lines
973 B

<?php
namespace PhpOffice\PhpSpreadsheetTests\Functional;
use PhpOffice\PhpSpreadsheet\Spreadsheet;
class EnclosureTest extends AbstractFunctional
{
public static function providerFormats(): array
{
return [
['Html'],
['Xls'],
['Xlsx'],
['Ods'],
['Csv'],
];
}
/**
* @dataProvider providerFormats
*
* @param string $format
*/
public function testEnclosure($format): void
{
$value = '<img alt="" src="http://example.com/image.jpg" />';
$spreadsheet = new Spreadsheet();
$spreadsheet->getActiveSheet()->getCell('A1')->setValue($value);
$reloadedSpreadsheet = $this->writeAndReload($spreadsheet, $format);
$actual = $reloadedSpreadsheet->getActiveSheet()->getCell('A1')->getCalculatedValue();
self::assertSame($value, $actual, 'should be able to write and read strings with multiples quotes');
}
}