summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/test_string.cpp7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/test_string.cpp b/test/test_string.cpp
index 3b8c3aa..d48112b 100644
--- a/test/test_string.cpp
+++ b/test/test_string.cpp
@@ -53,6 +53,13 @@ TEST(FudString, BasicStringOps)
ASSERT_TRUE(view2.nullTerminated());
}
+TEST(FudString, HeapAlloc)
+{
+ constexpr const char filenameLiteral[] = "Amazing Saga Volume 01/000.jpg";
+ fud::String filename{filenameLiteral};
+ ASSERT_EQ(filename.length(), sizeof(filenameLiteral) - 1);
+}
+
#if 0
TEST(FudString, FindSubstringCxx)
{