geekbrains_cpp_difficult_mo.../lesson_8/main.cpp

16 lines
237 B
C++
Raw Normal View History

2021-10-17 09:39:33 +00:00
/*
* main.cpp
*
* Created on: 16 окт. 2021 г.
* Author: alexander
*/
#include "lesson_1.hpp"
#include "tests.hpp"
int main(int argc, char **argv)
{
testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}