s0032
This commit is contained in:
31
tests/s0032_longest_valid_parentheses.cpp
Normal file
31
tests/s0032_longest_valid_parentheses.cpp
Normal file
@@ -0,0 +1,31 @@
|
||||
#include "s0032_longest_valid_parentheses.hpp"
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
|
||||
TEST(Problem32, Case1) {
|
||||
string i{"(()"};
|
||||
int o{2};
|
||||
Solution solution;
|
||||
EXPECT_EQ(solution.longestValidParentheses(i), o);
|
||||
}
|
||||
|
||||
TEST(Problem32, Case2) {
|
||||
string i{")()())"};
|
||||
int o{4};
|
||||
Solution solution;
|
||||
EXPECT_EQ(solution.longestValidParentheses(i), o);
|
||||
}
|
||||
|
||||
TEST(Problem32, Case3) {
|
||||
string i{"())"};
|
||||
int o{2};
|
||||
Solution solution;
|
||||
EXPECT_EQ(solution.longestValidParentheses(i), o);
|
||||
}
|
||||
|
||||
TEST(Problem32, Case4) {
|
||||
string i{"()(()"};
|
||||
int o{2};
|
||||
Solution solution;
|
||||
EXPECT_EQ(solution.longestValidParentheses(i), o);
|
||||
}
|
Reference in New Issue
Block a user