assertTrue(File::file_exists('blank.docx')); } /** * Test file_exists() */ public function testNoFileExists() { $dir = join(DIRECTORY_SEPARATOR, array(\PHPWORD_TESTS_BASE_DIR, '_files', 'templates')); chdir($dir); $this->assertFalse(File::file_exists('404.docx')); } /** * Test realpath() */ public function testRealpath() { $dir = join(DIRECTORY_SEPARATOR, array(\PHPWORD_TESTS_BASE_DIR, '_files', 'templates')); chdir($dir); $file = 'blank.docx'; $expected = $dir . DIRECTORY_SEPARATOR . $file; $this->assertEquals($expected, File::realpath($file)); } }