#include "gtest/gtest.h" #include #include #include TEST(common, StripFilename) { ASSERT_EQ("/home/foo", std::filesystem::path("/home/foo/bar.txt").parent_path()); ASSERT_EQ("", std::filesystem::path("bar.txt").parent_path()); }