diff options
author | Aleksander Machniak <alec@alec.pl> | 2014-02-05 20:18:51 +0100 |
---|---|---|
committer | Aleksander Machniak <alec@alec.pl> | 2014-02-05 20:18:51 +0100 |
commit | b37954110d2184279a7f400d8750996a27b8f666 (patch) | |
tree | 0a0b3d1ecd72c157b4d229cb4ecd9ed928198b32 /tests/phpunit.xml | |
parent | e445e0acb558b2c4805cef3ed13c84139962a5b3 (diff) |
Bring back unit tests (they should be removed when creating a package)
Diffstat (limited to 'tests/phpunit.xml')
-rw-r--r-- | tests/phpunit.xml | 70 |
1 files changed, 70 insertions, 0 deletions
diff --git a/tests/phpunit.xml b/tests/phpunit.xml new file mode 100644 index 000000000..a5942c433 --- /dev/null +++ b/tests/phpunit.xml @@ -0,0 +1,70 @@ +<phpunit backupGlobals="false" + bootstrap="bootstrap.php" + colors="true"> + <testsuites> + <testsuite name="All Tests"> + <file>Framework/BaseReplacer.php</file> + <file>Framework/Bootstrap.php</file> + <file>Framework/Browser.php</file> + <file>Framework/Cache.php</file> + <file>Framework/Charset.php</file> + <file>Framework/ContentFilter.php</file> + <file>Framework/Csv2vcard.php</file> + <file>Framework/Enriched.php</file> + <file>Framework/Html.php</file> + <file>Framework/Html2text.php</file> + <file>Framework/Imap.php</file> + <file>Framework/ImapGeneric.php</file> + <file>Framework/Image.php</file> + <file>Framework/MessageHeader.php</file> + <file>Framework/MessagePart.php</file> + <file>Framework/Mime.php</file> + <file>Framework/Rcube.php</file> + <file>Framework/ResultIndex.php</file> + <file>Framework/ResultSet.php</file> + <file>Framework/ResultThread.php</file> + <file>Framework/Smtp.php</file> + <file>Framework/Spellchecker.php</file> + <file>Framework/StringReplacer.php</file> + <file>Framework/User.php</file> + <file>Framework/Utils.php</file> + <file>Framework/VCard.php</file> + <file>Framework/Washtml.php</file> + <file>MailFunc.php</file> + </testsuite> + <testsuite name="Plugins Tests"> + <file>./../plugins/acl/tests/Acl.php</file> + <file>./../plugins/additional_message_headers/tests/AdditionalMessageHeaders.php</file> + <file>./../plugins/archive/tests/Archive.php</file> + <file>./../plugins/autologon/tests/Autologon.php</file> + <file>./../plugins/database_attachments/tests/DatabaseAttachments.php</file> + <file>./../plugins/debug_logger/tests/DebugLogger.php</file> + <file>./../plugins/emoticons/tests/Emoticons.php</file> + <file>./../plugins/enigma/tests/Enigma.php</file> + <file>./../plugins/example_addressbook/tests/ExampleAddressbook.php</file> + <file>./../plugins/filesystem_attachments/tests/FilesystemAttachments.php</file> + <file>./../plugins/help/tests/Help.php</file> + <file>./../plugins/hide_blockquote/tests/HideBlockquote.php</file> + <file>./../plugins/http_authentication/tests/HttpAuthentication.php</file> + <file>./../plugins/identity_select/tests/IdentitySelect.php</file> + <file>./../plugins/jqueryui/tests/Jqueryui.php</file> + <file>./../plugins/managesieve/tests/Managesieve.php</file> + <file>./../plugins/managesieve/tests/Parser.php</file> + <file>./../plugins/managesieve/tests/Tokenizer.php</file> + <file>./../plugins/markasjunk/tests/Markasjunk.php</file> + <file>./../plugins/new_user_dialog/tests/NewUserDialog.php</file> + <file>./../plugins/new_user_identity/tests/NewUserIdentity.php</file> + <file>./../plugins/newmail_notifier/tests/NewmailNotifier.php</file> + <file>./../plugins/password/tests/Password.php</file> + <file>./../plugins/redundant_attachments/tests/RedundantAttachments.php</file> + <file>./../plugins/show_additional_headers/tests/ShowAdditionalHeaders.php</file> + <file>./../plugins/squirrelmail_usercopy/tests/Squirrelmail_usercopy.php</file> + <file>./../plugins/subscriptions_option/tests/SubscriptionsOption.php</file> + <file>./../plugins/userinfo/tests/Userinfo.php</file> + <file>./../plugins/vcard_attachments/tests/VcardAttachments.php</file> + <file>./../plugins/virtuser_file/tests/VirtuserFile.php</file> + <file>./../plugins/virtuser_query/tests/VirtuserQuery.php</file> + <file>./../plugins/zipdownload/tests/Zipdownload.php</file> + </testsuite> + </testsuites> +</phpunit> |