leetcode/tests/s0007_reverse_integer.cpp
Sainnhe Park 59d1cb7245
Some checks failed
continuous-integration/drone/push Build is failing
s0007
2022-11-02 21:34:49 +08:00

32 lines
530 B
C++

#include "s0007_reverse_integer.hpp"
#include <gtest/gtest.h>
TEST(Problem7, Case1) {
int i = 123;
int o = 321;
Solution solution;
EXPECT_EQ(solution.reverse(i), o);
}
TEST(Problem7, Case2) {
int i = -123;
int o = -321;
Solution solution;
EXPECT_EQ(solution.reverse(i), o);
}
TEST(Problem7, Case3) {
int i = 120;
int o = 21;
Solution solution;
EXPECT_EQ(solution.reverse(i), o);
}
TEST(Problem7, Case4) {
int i = -2147483648;
int o = 0;
Solution solution;
EXPECT_EQ(solution.reverse(i), o);
}