This commit is contained in:
2022-11-22 18:06:14 +08:00
parent 9a6595462d
commit 8ce5ca9166
3 changed files with 52 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
#include "s0038_count_and_say.hpp"
#include <gtest/gtest.h>
TEST(Problem38, Case1) {
int i{1};
string o{"1"};
Solution solution;
EXPECT_EQ(solution.countAndSay(i), o);
}
TEST(Problem38, Case2) {
int i{4};
string o{"1211"};
Solution solution;
EXPECT_EQ(solution.countAndSay(i), o);
}