X-Git-Url: http://Server1/repobrowser/?p=xestiaab%2F.git;a=blobdiff_plain;f=source%2Ftests%2Fxestiaab_test.cpp;h=05a49957ca7efb2fc79fb37e78dcec7525f5ef20;hp=7dc8491a1905f86e19d8d07ad85ae5f54383046a;hb=13af7e459ddcc361e62927972f493ca657592874;hpb=ce18438e729e6c11eebd3a5fb73f4039fdda33a0 diff --git a/source/tests/xestiaab_test.cpp b/source/tests/xestiaab_test.cpp index 7dc8491..05a4995 100644 --- a/source/tests/xestiaab_test.cpp +++ b/source/tests/xestiaab_test.cpp @@ -17,135 +17,15 @@ // with Xestia Address Book. If not, see #include -#include -#include #include "xestiaab_contactload.h" #include "xestiaab_contactsave.h" #include "xestiaab_convert.h" #include "xestiaab_vcard.h" #include "xestiaab_common.h" -enum MenuOpts { - TESTS_CARDDAV = 1, - TESTS_CONTACTLOAD, - TESTS_CONTACTSAVE, - TESTS_VCARD, - TESTS_CONVERT, - TESTS_COMMON, - TESTS_ALL, - TESTS_QUIT -}; - -void printn(std::string text){ -// printn: Print a line and end with a newline (\n). - - std::cout << text << std::endl; - -} - -void printmenu(){ -// printmenu: Print the menu. - - std::cout << "Select an option:" << std::endl << std::endl; - std::cout << TESTS_CARDDAV << ". CardDAV Object" << std::endl; - std::cout << TESTS_CONTACTLOAD << ". Contact Loading" << std::endl; - std::cout << TESTS_CONTACTSAVE << ". Contact Saving" << std::endl; - std::cout << TESTS_VCARD << ". vCard Object" << std::endl; - std::cout << TESTS_CONVERT << ". Contact Conversion" << std::endl; - std::cout << TESTS_COMMON << ". Common Functions" << std::endl; - std::cout << TESTS_ALL << ". All Tests" << std::endl; - std::cout << TESTS_QUIT << ". Quit" << std::endl; - std::cout << std::endl; - -} - -int main(int argc, char* argv[]){ - - ::testing::InitGoogleTest(&argc, argv); - - printn("Xestia Address Book Unit Testing Application"); - printn("(c)2015 Xestia Software Development"); - printn("Note: Unit testing is currently in development"); - printn(""); - - bool ExitEnabled = false; - std::string StringOption = ""; - int TestResult = 0; - - while(ExitEnabled == false){ - - printmenu(); - - // Get user input. - - std::cout << "Select Option: "; - std::cin >> StringOption; - - int IntOption = -1; - - // Check if input is a number. - - try{ - IntOption = stoi(StringOption); - } - - // Return to the top of the while statement if input - // really isn't a number. - - catch(std::invalid_argument e){ - printn("Error: Selected option is not a number."); - continue; - } - - // Find which option has been selected from the - // input. - - switch(IntOption){ - - case TESTS_CARDDAV: - printn("Running CardDAV tests..."); - ::testing::GTEST_FLAG(filter) = "CardDAV*"; - TestResult = RUN_ALL_TESTS(); - break; - case TESTS_CONTACTLOAD: - printn("Running Contact Loading tests..."); - ::testing::GTEST_FLAG(filter) = "ContactLoad*"; - TestResult = RUN_ALL_TESTS(); - break; - case TESTS_CONTACTSAVE: - printn("Running Contact Saving tests..."); - ::testing::GTEST_FLAG(filter) = "ContactSave*"; - TestResult = RUN_ALL_TESTS(); - break; - case TESTS_CONVERT: - printn("Running Contact Conversion tests..."); - ::testing::GTEST_FLAG(filter) = "ConvertCmdLine*"; - TestResult = RUN_ALL_TESTS(); - break; - case TESTS_VCARD: - printn("Running vCard tests..."); - ::testing::GTEST_FLAG(filter) = "vCard*"; - TestResult = RUN_ALL_TESTS(); - break; - case TESTS_COMMON: - printn("Running Common Functions tests..."); - ::testing::GTEST_FLAG(filter) = "CommonFunctions*"; - TestResult = RUN_ALL_TESTS(); - break; - case TESTS_ALL: - printn("Running all tests..."); - ::testing::GTEST_FLAG(filter) = "*"; - TestResult = RUN_ALL_TESTS(); - break; - case TESTS_QUIT: - return 0; - break; - default: - printn("Invalid menu number given."); - break; - - } - - } - +int main(int argc, char **argv) +{ + ::testing::GTEST_FLAG(shuffle) = true; + ::testing::InitGoogleTest(&argc, argv); + return RUN_ALL_TESTS(); }