Upload new files

This commit is contained in:
blahpy
2020-09-09 16:54:16 +12:00
parent 2075dd66b6
commit eb886d0c45
6 changed files with 57 additions and 1 deletions
+11
View File
@@ -0,0 +1,11 @@
#include "common/util/FileUtil.h"
#include <iostream>
#include "gtest/gtest.h"
TEST(test, test) {
std::string test[] = {"cabbage", "banana", "apple"};
std::cout << FileUtil::get_file_path(test) << std::endl;
EXPECT_TRUE(true);
}