mirror of
https://github.com/mfontanini/libtins
synced 2026-01-25 19:51:34 +01:00
Initial code cleanup More code cleanup Cleanup more code Cleanup Dot11 code Fix OSX build issue Cleanup examples Fix ref and pointer declaration syntax Fix braces
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();
|
|
}
|