ladybird/AK/Tests/TestFixedArray.cpp
Andreas Kling 73fdbba59c AK: Rename <AK/AKString.h> to <AK/String.h>
This was a workaround to be able to build on case-insensitive file
systems where it might get confused about <string.h> vs <String.h>.

Let's just not support building that way, so String.h can have an
objectively nicer name. :^)
2019-09-06 15:36:54 +02:00

55 lines
1 KiB
C++

#include <AK/TestSuite.h>
#include <AK/String.h>
#include <AK/FixedArray.h>
TEST_CASE(construct)
{
EXPECT(FixedArray<int>().size() == 0);
}
TEST_CASE(ints)
{
FixedArray<int> ints(3);
ints[0] = 0;
ints[1] = 1;
ints[2] = 2;
EXPECT_EQ(ints[0], 0);
EXPECT_EQ(ints[1], 1);
EXPECT_EQ(ints[2], 2);
ints.clear();
EXPECT_EQ(ints.size(), 0u);
}
TEST_CASE(resize)
{
FixedArray<String> strings(2);
strings[0] = "ABC";
strings[1] = "DEF";
EXPECT_EQ(strings.size(), 2u);
EXPECT_EQ(strings[0], "ABC");
EXPECT_EQ(strings[1], "DEF");
strings.resize(4);
EXPECT_EQ(strings.size(), 4u);
EXPECT_EQ(strings[0], "ABC");
EXPECT_EQ(strings[1], "DEF");
EXPECT_EQ(strings[2].is_null(), true);
EXPECT_EQ(strings[3].is_null(), true);
strings[2] = "GHI";
strings[3] = "JKL";
EXPECT_EQ(strings[2], "GHI");
EXPECT_EQ(strings[3], "JKL");
strings.resize(1);
EXPECT_EQ(strings.size(), 1u);
EXPECT_EQ(strings[0], "ABC");
}
TEST_MAIN(FixedArray)