1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 11:58:12 +00:00

StringView: Add StringView::operator==(StringView)

Previously we'd implicitly convert the second StringView to a String
when comparing two StringViews, which is obviously not what we wanted.
This commit is contained in:
Andreas Kling 2019-08-15 14:07:23 +02:00
parent 77737be7b3
commit 2349dc1a21
3 changed files with 55 additions and 1 deletions

View file

@ -0,0 +1,36 @@
#include <AK/TestSuite.h>
#include <AK/AKString.h>
TEST_CASE(construct_empty)
{
EXPECT(StringView().is_null());
EXPECT(StringView().is_empty());
EXPECT(!StringView().characters_without_null_termination());
EXPECT_EQ(StringView().length(), 0);
}
TEST_CASE(view_literal)
{
const char* truth = "cats rule dogs drool";
StringView view(truth);
EXPECT_EQ(view.is_null(), false);
EXPECT_EQ(view.characters_without_null_termination(), truth);
EXPECT_EQ(view, view);
EXPECT_EQ(view, truth);
}
TEST_CASE(compare_views)
{
String foo1 = "foo";
String foo2 = "foo";
auto view1 = foo1.view();
auto view2 = foo2.view();
EXPECT_EQ(view1, view2);
EXPECT_EQ(view1, foo1);
EXPECT_EQ(view1, foo2);
EXPECT_EQ(view1, "foo");
}
TEST_MAIN(StringView)