Add buffer util tests

This commit is contained in:
2020-04-15 16:17:53 +02:00
parent a1f1de1b1a
commit 8c5086b15b
3 changed files with 27 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
#include "gtest/gtest.h"
#include "test_buffer_utils.cpp"
using namespace std;
int main(int argc, char **argv) {
::testing::InitGoogleTest(&argc, argv);
return RUN_ALL_TESTS();
}