PHPWord/tests/PhpWord/Tests/Element/LineTest.php

77 lines
2.5 KiB
PHP

<?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.
*
* @link https://github.com/PHPOffice/PHPWord
* @copyright 2010-2014 PHPWord contributors
* @license http://www.gnu.org/licenses/lgpl.txt LGPL version 3
*/
namespace PhpOffice\PhpWord\Tests\Element;
use PhpOffice\PhpWord\Element\Line;
/**
* Test class for PhpOffice\PhpWord\Element\Line
*
* @coversDefaultClass \PhpOffice\PhpWord\Element\Line
* @runTestsInSeparateProcesses
*/
class LineTest extends \PHPUnit_Framework_TestCase
{
/**
* Create new instance
*/
public function testConstruct()
{
$oLine = new Line();
$this->assertInstanceOf('PhpOffice\\PhpWord\\Element\\Line', $oLine);
$this->assertEquals($oLine->getStyle(), null);
}
/**
* Get style name
*/
public function testStyleText()
{
$oLine = new Line('lineStyle');
$this->assertEquals($oLine->getStyle(), 'lineStyle');
}
/**
* Get style array
*/
public function testStyleArray()
{
$oLine = new Line(
array(
'width' => \PhpOffice\PhpWord\Shared\Drawing::centimetersToPixels(14),
'height' => \PhpOffice\PhpWord\Shared\Drawing::centimetersToPixels(4),
'positioning' => 'absolute',
'posHorizontalRel' => 'page',
'posVerticalRel' => 'page',
'flip' => true,
'marginLeft' => \PhpOffice\PhpWord\Shared\Drawing::centimetersToPixels(5),
'marginTop' => \PhpOffice\PhpWord\Shared\Drawing::centimetersToPixels(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
)
);
$this->assertInstanceOf('PhpOffice\\PhpWord\\Style\\Line', $oLine->getStyle());
}
}