mirror of
https://github.com/open-goal/jak-project
synced 2026-08-21 14:54:53 -04:00
Fix errors in common_util
This commit is contained in:
@@ -1,11 +1,13 @@
|
||||
#include "common/util/FileUtil.h"
|
||||
#include <iostream>
|
||||
#include "gtest/gtest.h"
|
||||
#include <string>
|
||||
#include <vector>
|
||||
|
||||
TEST(test, test) {
|
||||
TEST(FileUtil, valid_path) {
|
||||
|
||||
std::string test[] = {"cabbage", "banana", "apple"};
|
||||
std::cout << FileUtil::get_file_path(test) << std::endl;
|
||||
std::vector<std::string> test = {"cabbage", "banana", "apple"};
|
||||
std::string sampleString = FileUtil::get_file_path(test);
|
||||
// std::cout << sampleString << std::endl;
|
||||
|
||||
EXPECT_TRUE(true);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user