leetcode/tests/jianzhi_offer/string_test.cpp
2023-05-19 13:46:00 +08:00

10 lines
255 B
C++

#include "gtest/gtest.h"
#include "jianzhi_offer.h"
TEST(ReplaceSpaceTest, BasicAssertions) {
std::string input = "We are happy.";
std::string expected = "We%20are%20happy.";
yaha::String s;
EXPECT_EQ(expected, s.replace_space(input));
}