88 lines
2.7 KiB
PHP
88 lines
2.7 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\Text;
|
|
use PhpOffice\PhpWord\SimpleType\Jc;
|
|
use PhpOffice\PhpWord\Style\Font;
|
|
|
|
/**
|
|
* Test class for PhpOffice\PhpWord\Element\Text
|
|
*
|
|
* @runTestsInSeparateProcesses
|
|
*/
|
|
class TextTest extends \PHPUnit_Framework_TestCase
|
|
{
|
|
/**
|
|
* New instance
|
|
*/
|
|
public function testConstruct()
|
|
{
|
|
$oText = new Text();
|
|
|
|
$this->assertInstanceOf('PhpOffice\\PhpWord\\Element\\Text', $oText);
|
|
$this->assertNull($oText->getText());
|
|
$this->assertInstanceOf('PhpOffice\\PhpWord\\Style\\Font', $oText->getFontStyle());
|
|
$this->assertInstanceOf('PhpOffice\\PhpWord\\Style\\Paragraph', $oText->getParagraphStyle());
|
|
}
|
|
|
|
/**
|
|
* Get text
|
|
*/
|
|
public function testText()
|
|
{
|
|
$oText = new Text(htmlspecialchars('text', ENT_COMPAT, 'UTF-8'));
|
|
|
|
$this->assertEquals(htmlspecialchars('text', ENT_COMPAT, 'UTF-8'), $oText->getText());
|
|
}
|
|
|
|
/**
|
|
* Get font style
|
|
*/
|
|
public function testFont()
|
|
{
|
|
$oText = new Text(htmlspecialchars('text', ENT_COMPAT, 'UTF-8'), 'fontStyle');
|
|
$this->assertEquals('fontStyle', $oText->getFontStyle());
|
|
|
|
$oText->setFontStyle(array('bold' => true, 'italic' => true, 'size' => 16));
|
|
$this->assertInstanceOf('PhpOffice\\PhpWord\\Style\\Font', $oText->getFontStyle());
|
|
}
|
|
|
|
/**
|
|
* Get font style as object
|
|
*/
|
|
public function testFontObject()
|
|
{
|
|
$font = new Font();
|
|
$oText = new Text(htmlspecialchars('text', ENT_COMPAT, 'UTF-8'), $font);
|
|
$this->assertEquals($font, $oText->getFontStyle());
|
|
}
|
|
|
|
/**
|
|
* Get paragraph style
|
|
*/
|
|
public function testParagraph()
|
|
{
|
|
$oText = new Text(htmlspecialchars('text', ENT_COMPAT, 'UTF-8'), 'fontStyle', 'paragraphStyle');
|
|
$this->assertEquals('paragraphStyle', $oText->getParagraphStyle());
|
|
|
|
$oText->setParagraphStyle(array('alignment' => Jc::CENTER, 'spaceAfter' => 100));
|
|
$this->assertInstanceOf('PhpOffice\\PhpWord\\Style\\Paragraph', $oText->getParagraphStyle());
|
|
}
|
|
}
|