diff --git a/phpunit.xml.dist b/phpunit.xml.dist index a57f5bb6..59c7e38a 100644 --- a/phpunit.xml.dist +++ b/phpunit.xml.dist @@ -1,6 +1,6 @@ assertTrue(File::file_exists('blank.docx')); - } - /** - * Test file_exists() - */ - public function testNoFileExists() - { - $dir = join(\DIRECTORY_SEPARATOR, array(\PHPWORD_TESTS_BASE_DIR, 'data', 'templates')); - chdir($dir); - $this->assertFalse(File::file_exists('404.docx')); - } - - /** - * Test realpath() - */ - public function testRealpath() - { - $dir = join(\DIRECTORY_SEPARATOR, array(\PHPWORD_TESTS_BASE_DIR, 'data', 'templates')); - chdir($dir); - $file = 'blank.docx'; - $expected = $dir . \DIRECTORY_SEPARATOR . $file; - $this->assertEquals($expected, File::realpath($file)); - } -} diff --git a/tests/data/documents/reader.docx b/tests/data/documents/reader.docx deleted file mode 100644 index e2ceeb64..00000000 Binary files a/tests/data/documents/reader.docx and /dev/null differ diff --git a/tests/data/documents/without_table_macros.docx b/tests/data/documents/without_table_macros.docx deleted file mode 100644 index e4e9767f..00000000 Binary files a/tests/data/documents/without_table_macros.docx and /dev/null differ diff --git a/tests/data/templates/blank.docx b/tests/data/templates/blank.docx deleted file mode 100644 index 071b7f35..00000000 Binary files a/tests/data/templates/blank.docx and /dev/null differ diff --git a/tests/data/templates/clone-merge.docx b/tests/data/templates/clone-merge.docx deleted file mode 100644 index eb944367..00000000 Binary files a/tests/data/templates/clone-merge.docx and /dev/null differ diff --git a/tests/data/templates/corrupted_main_document_part.docx b/tests/data/templates/corrupted_main_document_part.docx deleted file mode 100644 index 69712525..00000000 Binary files a/tests/data/templates/corrupted_main_document_part.docx and /dev/null differ diff --git a/tests/data/templates/with_table_macros.docx b/tests/data/templates/with_table_macros.docx deleted file mode 100644 index cd5ed6ce..00000000 Binary files a/tests/data/templates/with_table_macros.docx and /dev/null differ