/** * @file test/main.cpp * @brief Main function for all unit tests. * * @author Name * @copyright (c) Company Name/ Author, YEAR * @copyright Licensed under the Apache License, Version 2.0 * @copyright Licensed under the GNU GPLv3 License */ #include "gtest/gtest.h" int main(int argc, char** argv) { ::testing::InitGoogleTest(&argc, argv); return RUN_ALL_TESTS(); }