From 0d70b314e7d517f941e8ab6d9670fdfcaeaf926a Mon Sep 17 00:00:00 2001 From: Chirayu Chiripal Date: Wed, 9 Jul 2014 18:51:46 +0530 Subject: [PATCH] test file for messages.inc.php Signed-off-by: Chirayu Chiripal --- .../config/PMA_messages_inc_test.php | 77 +++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 test/libraries/config/PMA_messages_inc_test.php 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 + ); + } +} +?>