14 lines
399 B
PHP
Executable File
14 lines
399 B
PHP
Executable File
<?php
|
|
\date_default_timezone_set('UTC');
|
|
|
|
// defining base dir for tests
|
|
if (!\defined('PHPWORD_TESTS_BASE_DIR')) {
|
|
\define('PHPWORD_TESTS_BASE_DIR', __DIR__);
|
|
}
|
|
|
|
// loading classes with PSR-4 autoloader
|
|
require_once __DIR__ . '/../src/Autoloader.php';
|
|
\PhpOffice\PhpWord\Autoloader::register();
|
|
|
|
require_once __DIR__ . '/_inc/TestHelperDOCX.php';
|
|
require_once __DIR__ . '/_inc/XmlDocument.php'; |