#define CATCH_CONFIG_RUNNER
#include "DepLibSRTP.hpp"
#include "DepLibUV.hpp"
#include "DepLibWebRTC.hpp"
#include "DepOpenSSL.hpp"
#include "DepUsrSCTP.hpp"
#include "LogLevel.hpp"
#include "Settings.hpp"
#include "Utils.hpp"
#include <catch2/catch.hpp>
#include <cstdlib>
int main(int argc, char* argv[])
{
LogLevel logLevel{ LogLevel::LOG_NONE };
if (std::getenv("MS_TEST_LOG_LEVEL"))
{
if (std::string(std::getenv("MS_TEST_LOG_LEVEL")) == "debug")
logLevel = LogLevel::LOG_DEBUG;
else if (std::string(std::getenv("MS_TEST_LOG_LEVEL")) == "warn")
logLevel = LogLevel::LOG_WARN;
else if (std::string(std::getenv("MS_TEST_LOG_LEVEL")) == "error")
logLevel = LogLevel::LOG_ERROR;
}
Settings::configuration.logLevel = logLevel;
DepLibUV::ClassInit();
DepOpenSSL::ClassInit();
DepLibSRTP::ClassInit();
DepUsrSCTP::ClassInit();
DepLibWebRTC::ClassInit();
Utils::Crypto::ClassInit();
int status = Catch::Session().run(argc, argv);
DepLibSRTP::ClassDestroy();
Utils::Crypto::ClassDestroy();
DepLibWebRTC::ClassDestroy();
DepUsrSCTP::ClassDestroy();
DepLibUV::ClassDestroy();
return status;
}