jak-project/test/test_common_util.cpp

13 lines
332 B
C++
Raw Normal View History

2020-09-09 00:54:16 -04:00
#include "common/util/FileUtil.h"
#include "gtest/gtest.h"
2020-09-09 02:41:45 -04:00
#include <string>
#include <vector>
2020-09-09 00:54:16 -04:00
2020-09-09 02:41:45 -04:00
TEST(FileUtil, valid_path) {
std::vector<std::string> test = {"cabbage", "banana", "apple"};
std::string sampleString = FileUtil::get_file_path(test);
// std::cout << sampleString << std::endl;
2020-09-09 00:54:16 -04:00
EXPECT_TRUE(true);
2020-09-09 02:41:45 -04:00
}