mirror of
https://github.com/KjellKod/g3log.git
synced 2024-12-12 18:30:25 +01:00
6750efe8fe
All other are under g3log. Example: #include <g3log/time.hpp> #include <g3log/g3log.hpp> etc This makes sure that the package manager (to be used soon) does NOT clutter any /usr/local/include space instead all the includes will be in /usr/local/include/g3log (or similar)
18 lines
615 B
C++
18 lines
615 B
C++
/** ==========================================================================
|
|
* 2011 by KjellKod.cc. This is PUBLIC DOMAIN to use at your own risk and comes
|
|
* with no warranties. This code is yours to share, use and modify with no
|
|
* strings attached and no restrictions or obligations.
|
|
* ============================================================================*/
|
|
|
|
#include <gtest/gtest.h>
|
|
#include <iostream>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
testing::InitGoogleTest(&argc, argv);
|
|
int return_value = RUN_ALL_TESTS();
|
|
std::cout << "FINISHED WITH THE TESTING" << std::endl;
|
|
return return_value;
|
|
}
|
|
|