PHPWord/Tests/PHPWord/Section/TextBreakTest.php
2014-03-11 21:44:54 +07:00

20 lines
435 B
PHP

<?php
namespace PHPWord\Tests\Section;
use PHPUnit_Framework_TestCase;
use PHPWord_Section_TextBreak;
class TextBreakTest extends \PHPUnit_Framework_TestCase
{
/**
* Executed before each method of the class
*/
public function testConstruct()
{
// Section Settings
$oTextBreak = new PHPWord_Section_TextBreak();
$this->assertInstanceOf('PHPWord_Section_TextBreak', $oTextBreak);
}
}