hack/tests/split_str.cpp
2022-03-01 12:03:12 +03:00

14 lines
221 B
C++

#include <gtest/gtest.h>
#include <string>
#include <vector>
#include "string/string.hpp"
TEST(split_str, check)
{
hack::v_str v { "asdf", "qwer", "zxcv" };
ASSERT_EQ(hack::split_str("asdf,qwer,zxcv", ','), v);
}