16 lines
237 B
C++
16 lines
237 B
C++
|
/*
|
|||
|
* 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();
|
|||
|
}
|