17 lines
501 B
C++
17 lines
501 B
C++
|
/**
|
||
|
* @file test/main.cpp
|
||
|
* @brief Main function for all unit tests.
|
||
|
*
|
||
|
* @author Name <email@example.com>
|
||
|
* @copyright (c) Company Name/ Author, YEAR
|
||
|
* @copyright Licensed under the Apache License, Version 2.0 <http://www.apache.org/licenses/LICENSE-2.0>
|
||
|
* @copyright Licensed under the GNU GPLv3 License <http://www.gnu.org/licenses/gpl-3.0.txt>
|
||
|
*/
|
||
|
|
||
|
#include "gtest/gtest.h"
|
||
|
|
||
|
int main(int argc, char** argv) {
|
||
|
::testing::InitGoogleTest(&argc, argv);
|
||
|
return RUN_ALL_TESTS();
|
||
|
}
|