34 lines
690 B
C++
34 lines
690 B
C++
#include <gtest/gtest.h>
|
|
#include <solution/2716.h>
|
|
|
|
// 测试用例 1
|
|
TEST(MinimizedStringLengthTest, Test1)
|
|
{
|
|
char s[] = "aaabc";
|
|
int expected = 3;
|
|
EXPECT_EQ(minimizedStringLength(s), expected);
|
|
}
|
|
|
|
// 测试用例 2
|
|
TEST(MinimizedStringLengthTest, Test2)
|
|
{
|
|
char s[] = "cbbd";
|
|
int expected = 3;
|
|
EXPECT_EQ(minimizedStringLength(s), expected);
|
|
}
|
|
|
|
// 测试用例 3
|
|
TEST(MinimizedStringLengthTest, Test3)
|
|
{
|
|
char s[] = "dddaaa";
|
|
int expected = 2;
|
|
EXPECT_EQ(minimizedStringLength(s), expected);
|
|
}
|
|
|
|
// 测试用例 4
|
|
TEST(MinimizedStringLengthTest, Test4)
|
|
{
|
|
char s[] = "baadccab";
|
|
int expected = 4;
|
|
EXPECT_EQ(minimizedStringLength(s), expected);
|
|
} |