leetcode/tests/s0135_candy.cpp
Sainnhe Park f4912703f9
All checks were successful
ci/woodpecker/push/test Pipeline was successful
s0135
2023-02-07 12:36:51 +08:00

18 lines
345 B
C++

#include "s0135_candy.hpp"
#include <gtest/gtest.h>
TEST(Problem135, Case1) {
vector<int> ratings{1, 0, 2};
int expected{5};
S0135 solution;
EXPECT_EQ(solution.candy(ratings), expected);
}
TEST(Problem135, Case2) {
vector<int> ratings{1, 2, 2};
int expected{4};
S0135 solution;
EXPECT_EQ(solution.candy(ratings), expected);
}