22 lines
521 B
C++
22 lines
521 B
C++
|
#include "s0003_longest_substring_without_repeating_characters.hpp"
|
||
|
|
||
|
#include <gtest/gtest.h>
|
||
|
|
||
|
TEST(Problem3, Case1) {
|
||
|
std::string s{std::string("abcabcbb")};
|
||
|
Solution solution;
|
||
|
EXPECT_EQ(solution.lengthOfLongestSubstring(s), 3);
|
||
|
}
|
||
|
|
||
|
TEST(Problem3, Case2) {
|
||
|
std::string s{std::string("bbbbb")};
|
||
|
Solution solution;
|
||
|
EXPECT_EQ(solution.lengthOfLongestSubstring(s), 1);
|
||
|
}
|
||
|
|
||
|
TEST(Problem3, Case3) {
|
||
|
std::string s{std::string("pwwkew")};
|
||
|
Solution solution;
|
||
|
EXPECT_EQ(solution.lengthOfLongestSubstring(s), 3);
|
||
|
}
|