PHPWord/tests/PhpWord/Tests/Section/PageBreakTest.php

19 lines
420 B
PHP
Raw Normal View History

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