PHPWord/Tests/PHPWord/Section/TextBreakTest.php

19 lines
403 B
PHP
Raw Normal View History

2014-03-09 19:09:22 +01:00
<?php
2014-03-09 15:04:23 -04:00
namespace PHPWord\Tests\Section;
2014-03-09 19:09:22 +01:00
use PHPWord_Section_TextBreak;
2014-03-09 15:04:23 -04:00
class TextBreakTest extends \PHPUnit_Framework_TestCase
{
/**
* Executed before each method of the class
*/
public function testConstruct()
{
// Section Settings
$oTextBreak = new PHPWord_Section_TextBreak();
2014-03-09 19:09:22 +01:00
2014-03-09 15:04:23 -04:00
$this->assertInstanceOf('PHPWord_Section_TextBreak', $oTextBreak);
}
}