This commit is contained in:
2022-11-16 10:58:20 +08:00
parent 9f4193858f
commit 8901afccf4
3 changed files with 67 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#include "s0030_substring_with_concatenation_of_all_words.hpp"
#include <gtest/gtest.h>
TEST(Problem30, Case1) {
string s{"barfoothefoobarman"};
vector<string> words{"foo", "bar"};
vector<int> o{0, 9};
Solution solution;
EXPECT_EQ(solution.findSubstring(s, words), o);
}
TEST(Problem30, Case2) {
string s{"wordgoodgoodgoodbestword"};
vector<string> words{"word","good","best","word"};
vector<int> o{};
Solution solution;
EXPECT_EQ(solution.findSubstring(s, words), o);
}