mirror of
https://github.com/mfontanini/libtins
synced 2026-01-23 10:45:57 +01:00
10 lines
155 B
C++
10 lines
155 B
C++
#include <iostream>
|
|
#include <gtest/gtest.h>
|
|
|
|
|
|
|
|
int main(int argc, char* argv[]) {
|
|
testing::InitGoogleTest(&argc, argv);
|
|
return RUN_ALL_TESTS();
|
|
}
|