Files
kompute/test/TestMain.cpp
Alejandro Saucedo fdc1d3b91a Reformatted
2020-09-12 17:21:50 +01:00

19 lines
334 B
C++

#include <gmock/gmock.h>
#include <kompute/Kompute.hpp>
int
main(int argc, char* argv[])
{
testing::InitGoogleTest(&argc, argv);
testing::InitGoogleMock(&argc, argv);
#if KOMPUTE_ENABLE_SPDLOG
spdlog::set_level(
static_cast<spdlog::level::level_enum>(SPDLOG_ACTIVE_LEVEL));
#endif
return RUN_ALL_TESTS();
}