diff --git a/test/libraries/config/PMA_messages_inc_test.php b/test/libraries/config/PMA_messages_inc_test.php new file mode 100644 index 0000000000..a9d86d8bde --- /dev/null +++ b/test/libraries/config/PMA_messages_inc_test.php @@ -0,0 +1,77 @@ +assertEquals( + 'Allow login to any MySQL server', + $strConfigAllowArbitraryServer_name + ); + $this->assertEquals( + 'Allow third party framing', + $strConfigAllowThirdPartyFraming_name + ); + $this->assertEquals( + 'Blowfish secret', + $strConfigblowfish_secret_name + ); + $this->assertEquals( + 'Dump table', + $strConfigExport_htmlword_structure_or_data_name + ); + $this->assertEquals( + 'Table structure', + $strConfigForm_TableStructure + ); + $this->assertEquals( + 'Explain SQL', + $strConfigSQLQuery_Explain_name + ); + $this->assertEquals( + 'Send error reports', + $strConfigSendErrorReports_name + ); + } +} +?>