2011-11-22 00:04:02 +01:00
|
|
|
/** ==========================================================================
|
|
|
|
* 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.
|
|
|
|
* ============================================================================*/
|
2011-11-05 17:36:07 +01:00
|
|
|
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include <iostream>
|
|
|
|
|
2023-12-01 00:17:45 +01:00
|
|
|
int main(int argc, char* argv[]) {
|
2015-07-16 09:55:23 +02:00
|
|
|
testing::InitGoogleTest(&argc, argv);
|
|
|
|
int return_value = RUN_ALL_TESTS();
|
2024-08-28 06:42:30 +02:00
|
|
|
std::cout << "FINISHED WITH THE TESTING " << std::endl;
|
2015-07-16 09:55:23 +02:00
|
|
|
return return_value;
|
2011-11-05 17:36:07 +01:00
|
|
|
}
|