Files
oak-editor/tests/gtest/common_digit_test.cpp
T
Mike-Solar f03b6b58ff style: reformat C/C++ sources and headers with clang-format
Run clang-format over all project C/C++ source and header files
(.c, .cpp, .cc, .h, .hpp, .hh, .m, .mm) under app/ and tests/.
Non-source files (svg, qm, qrc, etc.) were not touched.
2026-07-13 15:34:11 +08:00

24 lines
511 B
C++

#include <gtest/gtest.h>
#include "common/digit.h"
TEST(CommonDigit, SingleDigit)
{
EXPECT_EQ(olive::GetDigitCount(0), 1);
EXPECT_EQ(olive::GetDigitCount(5), 1);
EXPECT_EQ(olive::GetDigitCount(-5), 1);
}
TEST(CommonDigit, MultipleDigits)
{
EXPECT_EQ(olive::GetDigitCount(10), 2);
EXPECT_EQ(olive::GetDigitCount(999), 3);
EXPECT_EQ(olive::GetDigitCount(1000), 4);
EXPECT_EQ(olive::GetDigitCount(-12345), 5);
}
TEST(CommonDigit, LargeValue)
{
EXPECT_EQ(olive::GetDigitCount(123456789012345LL), 15);
}