#ifdef WIN32 #include #include #endif #define BOOST_TEST_MODULE AuthLoginExecutors #include #include #include "./../../src/endpoints_handlers/AuthRegistrationExecutor.h" #include "./../../src/DAO/MySQLUserDAO.h" #include "./../../src/db/mysql_connector.h" #include "./../../src/exceptions/session_exception.h" #include "./../../src/helpers/helpers.h" const std::string kUUID = std::to_string(uad::Random()); using namespace std; using namespace uad; using namespace boost; using namespace beast; using namespace json; using RouteAuthRegistrationExecutor = AuthRegistrationExecutor, beast::http::string_body>; using Request = boost::beast::http::request>>; BOOST_AUTO_TEST_CASE(AuthRegistrationExecutor_Invalid_Login_Data) { BOOST_CHECK(true == true); }