mirror of
https://github.com/KjellKod/g3log.git
synced 2025-01-19 08:46:42 +01:00
20 lines
545 B
C++
20 lines
545 B
C++
/* *************************************************
|
|
* Filename:test_main.cpp Framework for Logging and Design By Contract
|
|
* Created: 2011 by Kjell Hedström
|
|
*
|
|
* PUBLIC DOMAIN and Not copywrited. First published at KjellKod.cc
|
|
* ********************************************* */
|
|
|
|
#include <gtest/gtest.h>
|
|
#include <iostream>
|
|
#include <chrono>
|
|
|
|
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;
|
|
}
|
|
|