s0005
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
2022-11-02 17:32:58 +08:00
parent 50bf6b650b
commit 0b3383ad03
3 changed files with 197 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
#include "s0005_longest_palindromic_substring.hpp"
#include <gtest/gtest.h>
TEST(Problem5, Case1) {
std::string s("babad");
std::string r1("bab");
std::string r2("aba");
Solution1 solution1;
Solution2 solution2;
EXPECT_TRUE(solution1.longestPalindrome(s) == r1 || solution1.longestPalindrome(s) == r2);
EXPECT_TRUE(solution2.longestPalindrome(s) == r1 || solution2.longestPalindrome(s) == r2);
}
TEST(Problem5, Case2) {
std::string s("cbbd");
std::string r("bb");
Solution1 solution1;
Solution2 solution2;
EXPECT_EQ(r.compare(solution1.longestPalindrome(s)), 0);
EXPECT_EQ(r.compare(solution2.longestPalindrome(s)), 0);
}