78 lines
2.4 KiB
PHP
Raw Normal View History

2014-05-29 16:44:00 +02:00
<?php
/**
* This file is part of PHPWord - A pure PHP library for reading and writing
* word processing documents.
*
* PHPWord is free software distributed under the terms of the GNU Lesser
* General Public License version 3 as published by the Free Software Foundation.
*
* For the full copyright and license information, please read the LICENSE
* file that was distributed with this source code. For the full list of
* contributors, visit https://github.com/PHPOffice/PHPWord/contributors.
*
* @see https://github.com/PHPOffice/PHPWord
2022-09-16 11:45:45 +02:00
*
2014-05-29 16:44:00 +02:00
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
*/
2022-09-16 14:09:17 +02:00
namespace PhpOffice\PhpWordTests\Element;
use PhpOffice\PhpWord\Element\Line;
2014-05-29 16:44:00 +02:00
/**
2022-09-16 11:45:45 +02:00
* Test class for PhpOffice\PhpWord\Element\Line.
2014-05-29 16:44:00 +02:00
*
* @coversDefaultClass \PhpOffice\PhpWord\Element\Line
2022-09-16 11:45:45 +02:00
*
2014-05-29 16:44:00 +02:00
* @runTestsInSeparateProcesses
*/
class LineTest extends \PHPUnit\Framework\TestCase
2014-05-29 16:44:00 +02:00
{
/**
2022-09-16 11:45:45 +02:00
* Create new instance.
2014-05-29 16:44:00 +02:00
*/
2022-09-16 11:45:45 +02:00
public function testConstruct(): void
2014-05-29 16:44:00 +02:00
{
$oLine = new Line();
2022-09-16 11:45:45 +02:00
self::assertInstanceOf('PhpOffice\\PhpWord\\Element\\Line', $oLine);
self::assertNull($oLine->getStyle());
2014-05-29 16:44:00 +02:00
}
2014-05-29 16:44:00 +02:00
/**
2022-09-16 11:45:45 +02:00
* Get style name.
2014-05-29 16:44:00 +02:00
*/
2022-09-16 11:45:45 +02:00
public function testStyleText(): void
2014-05-29 16:44:00 +02:00
{
$oLine = new Line('lineStyle');
2022-09-16 11:45:45 +02:00
self::assertEquals('lineStyle', $oLine->getStyle());
2014-05-29 16:44:00 +02:00
}
2014-05-29 16:44:00 +02:00
/**
2022-09-16 11:45:45 +02:00
* Get style array.
2014-05-29 16:44:00 +02:00
*/
2022-09-16 11:45:45 +02:00
public function testStyleArray(): void
2014-05-29 16:44:00 +02:00
{
$oLine = new Line(
2022-09-16 11:45:45 +02:00
[
'width' => \PhpOffice\PhpWord\Shared\Converter::cmToPixel(14),
'height' => \PhpOffice\PhpWord\Shared\Converter::cmToPixel(4),
'positioning' => 'absolute',
2014-05-29 16:44:00 +02:00
'posHorizontalRel' => 'page',
2022-09-16 11:45:45 +02:00
'posVerticalRel' => 'page',
'flip' => true,
'marginLeft' => \PhpOffice\PhpWord\Shared\Converter::cmToPixel(5),
'marginTop' => \PhpOffice\PhpWord\Shared\Converter::cmToPixel(3),
'wrappingStyle' => \PhpOffice\PhpWord\Style\Image::WRAPPING_STYLE_SQUARE,
'beginArrow' => \PhpOffice\PhpWord\Style\Line::ARROW_STYLE_BLOCK,
'endArrow' => \PhpOffice\PhpWord\Style\Line::ARROW_STYLE_OVAL,
'dash' => \PhpOffice\PhpWord\Style\Line::DASH_STYLE_LONG_DASH_DOT_DOT,
'weight' => 10,
]
2014-05-29 16:44:00 +02:00
);
2022-09-16 11:45:45 +02:00
self::assertInstanceOf('PhpOffice\\PhpWord\\Style\\Line', $oLine->getStyle());
2014-05-29 16:44:00 +02:00
}
}