From a7444cb482844d97290a15e1d70423a9a964545a Mon Sep 17 00:00:00 2001 From: Gabriel Bull Date: Sun, 23 Mar 2014 11:59:22 -0400 Subject: [PATCH] Changed tests namespace to reflect the namespace of the source code --- test/PhpWord/{ => Tests}/AutoloaderTest.php | 2 +- .../{ => Tests}/DocumentPropertiesTest.php | 2 +- .../{ => Tests}/Exceptions/ExceptionTest.php | 2 +- .../Exceptions/InvalidImageExceptionTest.php | 2 +- .../Exceptions/InvalidStyleExceptionTest.php | 2 +- .../UnsupportedImageTypeExceptionTest.php | 2 +- test/PhpWord/{ => Tests}/IOFactoryTest.php | 2 +- test/PhpWord/{ => Tests}/MediaTest.php | 2 +- test/PhpWord/{ => Tests}/PhpWordTest.php | 2 +- test/PhpWord/{ => Tests}/Reader/Word2007Test.php | 2 +- .../Section/Footer/PreserveTextTest.php | 2 +- test/PhpWord/{ => Tests}/Section/FooterTest.php | 2 +- test/PhpWord/{ => Tests}/Section/FootnoteTest.php | 2 +- test/PhpWord/{ => Tests}/Section/HeaderTest.php | 2 +- test/PhpWord/{ => Tests}/Section/ImageTest.php | 2 +- test/PhpWord/{ => Tests}/Section/LinkTest.php | 2 +- test/PhpWord/{ => Tests}/Section/ListItemTest.php | 2 +- .../{ => Tests}/Section/MemoryImageTest.php | 2 +- test/PhpWord/{ => Tests}/Section/ObjectTest.php | 2 +- .../PhpWord/{ => Tests}/Section/PageBreakTest.php | 2 +- test/PhpWord/{ => Tests}/Section/SettingsTest.php | 2 +- .../{ => Tests}/Section/Table/CellTest.php | 2 +- .../PhpWord/{ => Tests}/Section/Table/RowTest.php | 2 +- test/PhpWord/{ => Tests}/Section/TableTest.php | 2 +- .../PhpWord/{ => Tests}/Section/TextBreakTest.php | 2 +- test/PhpWord/{ => Tests}/Section/TextRunTest.php | 2 +- test/PhpWord/{ => Tests}/Section/TextTest.php | 2 +- test/PhpWord/{ => Tests}/Section/TitleTest.php | 2 +- test/PhpWord/{ => Tests}/SectionTest.php | 2 +- test/PhpWord/{ => Tests}/SettingsTest.php | 2 +- test/PhpWord/{ => Tests}/Shared/DrawingTest.php | 2 +- test/PhpWord/{ => Tests}/Shared/FileTest.php | 2 +- test/PhpWord/{ => Tests}/Shared/FontTest.php | 2 +- test/PhpWord/{ => Tests}/Shared/StringTest.php | 2 +- test/PhpWord/{ => Tests}/Style/CellTest.php | 2 +- test/PhpWord/{ => Tests}/Style/FontTest.php | 2 +- test/PhpWord/{ => Tests}/Style/ImageTest.php | 2 +- test/PhpWord/{ => Tests}/Style/ListItemTest.php | 2 +- test/PhpWord/{ => Tests}/Style/ParagraphTest.php | 2 +- test/PhpWord/{ => Tests}/Style/RowTest.php | 2 +- test/PhpWord/{ => Tests}/Style/TOCTest.php | 2 +- test/PhpWord/{ => Tests}/Style/TableFullTest.php | 2 +- test/PhpWord/{ => Tests}/Style/TableTest.php | 2 +- test/PhpWord/{ => Tests}/Style/TabsTest.php | 2 +- test/PhpWord/{ => Tests}/StyleTest.php | 2 +- test/PhpWord/{ => Tests}/TOCTest.php | 2 +- test/PhpWord/{ => Tests}/TemplateTest.php | 2 +- .../{ => Tests}/Writer/ODText/ContentTest.php | 2 +- .../{ => Tests}/Writer/ODText/WriterPartTest.php | 2 +- test/PhpWord/{ => Tests}/Writer/ODTextTest.php | 2 +- test/PhpWord/{ => Tests}/Writer/RTFTest.php | 2 +- .../{ => Tests}/Writer/Word2007/BaseTest.php | 2 +- .../{ => Tests}/Writer/Word2007/DocumentTest.php | 2 +- .../{ => Tests}/Writer/Word2007/FooterTest.php | 2 +- .../{ => Tests}/Writer/Word2007/FootnotesTest.php | 2 +- .../{ => Tests}/Writer/Word2007/HeaderTest.php | 2 +- .../{ => Tests}/Writer/Word2007/StylesTest.php | 2 +- .../Writer/Word2007/WriterPartTest.php | 2 +- test/PhpWord/{ => Tests}/Writer/Word2007Test.php | 2 +- .../Tests/_files}/documents/reader.docx.zip | Bin .../Tests/_files}/documents/sheet.xls | Bin .../Tests/_files}/images/PhpWord.png | Bin .../Tests/_files}/images/alexz-johnson.pcx | Bin .../Tests/_files}/images/angela_merkel.tif | Bin .../Tests/_files}/images/duke_nukem.bmp | Bin .../Tests/_files}/images/earth.jpg | Bin .../Tests/_files}/images/firefox.png | Bin .../Tests/_files}/images/mario.gif | Bin .../Tests/_files}/images/mars.jpg | Bin .../Tests/_files}/images/mars_noext_jpg | Bin .../Tests/_files}/xsl/passthrough.xsl | 0 .../Tests/_files}/xsl/remove_tables_by_needle.xsl | 0 .../Tests/_includes}/TestHelperDOCX.php | 2 +- .../Tests/_includes}/XmlDocument.php | 2 +- test/bootstrap.php | 14 ++++++++++++-- 75 files changed, 73 insertions(+), 63 deletions(-) rename test/PhpWord/{ => Tests}/AutoloaderTest.php (97%) rename test/PhpWord/{ => Tests}/DocumentPropertiesTest.php (99%) rename test/PhpWord/{ => Tests}/Exceptions/ExceptionTest.php (88%) rename test/PhpWord/{ => Tests}/Exceptions/InvalidImageExceptionTest.php (89%) rename test/PhpWord/{ => Tests}/Exceptions/InvalidStyleExceptionTest.php (89%) rename test/PhpWord/{ => Tests}/Exceptions/UnsupportedImageTypeExceptionTest.php (90%) rename test/PhpWord/{ => Tests}/IOFactoryTest.php (97%) rename test/PhpWord/{ => Tests}/MediaTest.php (98%) rename test/PhpWord/{ => Tests}/PhpWordTest.php (99%) rename test/PhpWord/{ => Tests}/Reader/Word2007Test.php (97%) rename test/PhpWord/{ => Tests}/Section/Footer/PreserveTextTest.php (96%) rename test/PhpWord/{ => Tests}/Section/FooterTest.php (98%) rename test/PhpWord/{ => Tests}/Section/FootnoteTest.php (97%) rename test/PhpWord/{ => Tests}/Section/HeaderTest.php (99%) rename test/PhpWord/{ => Tests}/Section/ImageTest.php (98%) rename test/PhpWord/{ => Tests}/Section/LinkTest.php (97%) rename test/PhpWord/{ => Tests}/Section/ListItemTest.php (95%) rename test/PhpWord/{ => Tests}/Section/MemoryImageTest.php (98%) rename test/PhpWord/{ => Tests}/Section/ObjectTest.php (98%) rename test/PhpWord/{ => Tests}/Section/PageBreakTest.php (89%) rename test/PhpWord/{ => Tests}/Section/SettingsTest.php (99%) rename test/PhpWord/{ => Tests}/Section/Table/CellTest.php (99%) rename test/PhpWord/{ => Tests}/Section/Table/RowTest.php (96%) rename test/PhpWord/{ => Tests}/Section/TableTest.php (97%) rename test/PhpWord/{ => Tests}/Section/TextBreakTest.php (97%) rename test/PhpWord/{ => Tests}/Section/TextRunTest.php (98%) rename test/PhpWord/{ => Tests}/Section/TextTest.php (96%) rename test/PhpWord/{ => Tests}/Section/TitleTest.php (96%) rename test/PhpWord/{ => Tests}/SectionTest.php (99%) rename test/PhpWord/{ => Tests}/SettingsTest.php (94%) rename test/PhpWord/{ => Tests}/Shared/DrawingTest.php (97%) rename test/PhpWord/{ => Tests}/Shared/FileTest.php (96%) rename test/PhpWord/{ => Tests}/Shared/FontTest.php (96%) rename test/PhpWord/{ => Tests}/Shared/StringTest.php (95%) rename test/PhpWord/{ => Tests}/Style/CellTest.php (97%) rename test/PhpWord/{ => Tests}/Style/FontTest.php (98%) rename test/PhpWord/{ => Tests}/Style/ImageTest.php (97%) rename test/PhpWord/{ => Tests}/Style/ListItemTest.php (95%) rename test/PhpWord/{ => Tests}/Style/ParagraphTest.php (98%) rename test/PhpWord/{ => Tests}/Style/RowTest.php (95%) rename test/PhpWord/{ => Tests}/Style/TOCTest.php (95%) rename test/PhpWord/{ => Tests}/Style/TableFullTest.php (98%) rename test/PhpWord/{ => Tests}/Style/TableTest.php (96%) rename test/PhpWord/{ => Tests}/Style/TabsTest.php (96%) rename test/PhpWord/{ => Tests}/StyleTest.php (97%) rename test/PhpWord/{ => Tests}/TOCTest.php (98%) rename test/PhpWord/{ => Tests}/TemplateTest.php (99%) rename test/PhpWord/{ => Tests}/Writer/ODText/ContentTest.php (97%) rename test/PhpWord/{ => Tests}/Writer/ODText/WriterPartTest.php (95%) rename test/PhpWord/{ => Tests}/Writer/ODTextTest.php (99%) rename test/PhpWord/{ => Tests}/Writer/RTFTest.php (98%) rename test/PhpWord/{ => Tests}/Writer/Word2007/BaseTest.php (99%) rename test/PhpWord/{ => Tests}/Writer/Word2007/DocumentTest.php (98%) rename test/PhpWord/{ => Tests}/Writer/Word2007/FooterTest.php (96%) rename test/PhpWord/{ => Tests}/Writer/Word2007/FootnotesTest.php (93%) rename test/PhpWord/{ => Tests}/Writer/Word2007/HeaderTest.php (96%) rename test/PhpWord/{ => Tests}/Writer/Word2007/StylesTest.php (97%) rename test/PhpWord/{ => Tests}/Writer/Word2007/WriterPartTest.php (95%) rename test/PhpWord/{ => Tests}/Writer/Word2007Test.php (98%) rename test/{data => PhpWord/Tests/_files}/documents/reader.docx.zip (100%) rename test/{data => PhpWord/Tests/_files}/documents/sheet.xls (100%) rename test/{data => PhpWord/Tests/_files}/images/PhpWord.png (100%) rename test/{data => PhpWord/Tests/_files}/images/alexz-johnson.pcx (100%) rename test/{data => PhpWord/Tests/_files}/images/angela_merkel.tif (100%) rename test/{data => PhpWord/Tests/_files}/images/duke_nukem.bmp (100%) rename test/{data => PhpWord/Tests/_files}/images/earth.jpg (100%) rename test/{data => PhpWord/Tests/_files}/images/firefox.png (100%) rename test/{data => PhpWord/Tests/_files}/images/mario.gif (100%) rename test/{data => PhpWord/Tests/_files}/images/mars.jpg (100%) rename test/{data => PhpWord/Tests/_files}/images/mars_noext_jpg (100%) rename test/{data => PhpWord/Tests/_files}/xsl/passthrough.xsl (100%) rename test/{data => PhpWord/Tests/_files}/xsl/remove_tables_by_needle.xsl (100%) rename test/{common => PhpWord/Tests/_includes}/TestHelperDOCX.php (98%) rename test/{common => PhpWord/Tests/_includes}/XmlDocument.php (98%) diff --git a/test/PhpWord/AutoloaderTest.php b/test/PhpWord/Tests/AutoloaderTest.php similarity index 97% rename from test/PhpWord/AutoloaderTest.php rename to test/PhpWord/Tests/AutoloaderTest.php index 2a5e7cf9..5657fe6b 100644 --- a/test/PhpWord/AutoloaderTest.php +++ b/test/PhpWord/Tests/AutoloaderTest.php @@ -1,5 +1,5 @@