#include "s0029_divide_two_integers.hpp" #include TEST(Problem29, Case1) { int dividend{10}; int divisor{3}; int o{3}; S0029 solution; EXPECT_EQ(solution.divide(dividend, divisor), o); } TEST(Problem29, Case2) { int dividend{7}; int divisor{-3}; int o{-2}; S0029 solution; EXPECT_EQ(solution.divide(dividend, divisor), o); }