mirror of
https://github.com/open-goal/jak-project
synced 2026-05-23 15:02:01 -04:00
11 lines
249 B
C++
11 lines
249 B
C++
#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);
|
|
} |