ladybird/Tests/AK/TestStack.cpp
Linus Groh 6e19ab2bbc AK+Everywhere: Rename String to DeprecatedString
We have a new, improved string type coming up in AK (OOM aware, no null
state), and while it's going to use UTF-8, the name UTF8String is a
mouthful - so let's free up the String name by renaming the existing
class.
Making the old one have an annoying name will hopefully also help with
quick adoption :^)
2022-12-06 08:54:33 +01:00

46 lines
1.0 KiB
C++

/*
* Copyright (c) 2021, Jesse Buhagiar <jooster669@gmail.com>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#include <LibTest/TestCase.h>
#include <AK/Stack.h>
TEST_CASE(basic)
{
AK::Stack<int, 3> stack;
EXPECT(stack.is_empty() == true);
stack.push(2);
stack.push(4);
stack.push(17);
EXPECT(stack.size() == 3);
EXPECT(stack.top() == 17);
EXPECT_EQ(stack.pop(), true);
EXPECT_EQ(stack.pop(), true);
EXPECT_EQ(stack.pop(), true);
EXPECT(stack.is_empty());
}
TEST_CASE(complex_type)
{
AK::Stack<DeprecatedString, 4> stack;
EXPECT_EQ(stack.is_empty(), true);
EXPECT(stack.push("Well"));
EXPECT(stack.push("Hello"));
EXPECT(stack.push("Friends"));
EXPECT(stack.push(":^)"));
EXPECT_EQ(stack.top(), ":^)");
EXPECT_EQ(stack.pop(), true);
EXPECT_EQ(stack.top(), "Friends");
EXPECT_EQ(stack.pop(), true);
EXPECT_EQ(stack.top(), "Hello");
EXPECT_EQ(stack.pop(), true);
EXPECT_EQ(stack.top(), "Well");
EXPECT_EQ(stack.pop(), true);
EXPECT(stack.is_empty());
}