hack/tests/split_str.cpp
chatlanin 0ad600c339 init
2022-02-28 12:44:18 +03:00

14 lines
273 B
C++

#include <gtest/gtest.h>
#include <string>
#include <vector>
#include "string/string.hpp"
using v_str = std::vector<std::string>;
TEST(split_str, check__func)
{
// v_str res {"asdf","qwer","zxcv"};
// ASSERT_EQ(tools::func::split_str("asdf,qwer,zxcv", ','), res);
}