leetcode/tests/s0030_substring_with_concat...

20 lines
488 B
C++

#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};
S0030 solution;
EXPECT_EQ(solution.findSubstring(s, words), o);
}
TEST(Problem30, Case2) {
string s{"wordgoodgoodgoodbestword"};
vector<string> words{"word","good","best","word"};
vector<int> o{};
S0030 solution;
EXPECT_EQ(solution.findSubstring(s, words), o);
}