20 lines
494 B
C++
20 lines
494 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};
|
||
|
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);
|
||
|
}
|