Add a few tests for StringRef::{start,end}with.
authorRui Ueyama <ruiu@google.com>
Mon, 28 Oct 2013 22:42:54 +0000 (22:42 +0000)
committerRui Ueyama <ruiu@google.com>
Mon, 28 Oct 2013 22:42:54 +0000 (22:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@193550 91177308-0d34-0410-b5e6-96231b3b80d8

unittests/ADT/StringRefTest.cpp

index 3cb6143a42b6d4d9799f94cf55cea1e74815f8f1..07fba49684cef032b93ddfa642c35d0beba84462 100644 (file)
@@ -248,6 +248,7 @@ TEST(StringRefTest, Trim) {
 
 TEST(StringRefTest, StartsWith) {
   StringRef Str("hello");
+  EXPECT_TRUE(Str.startswith(""));
   EXPECT_TRUE(Str.startswith("he"));
   EXPECT_FALSE(Str.startswith("helloworld"));
   EXPECT_FALSE(Str.startswith("hi"));
@@ -255,6 +256,7 @@ TEST(StringRefTest, StartsWith) {
 
 TEST(StringRefTest, EndsWith) {
   StringRef Str("hello");
+  EXPECT_TRUE(Str.endswith(""));
   EXPECT_TRUE(Str.endswith("lo"));
   EXPECT_FALSE(Str.endswith("helloworld"));
   EXPECT_FALSE(Str.endswith("worldhello"));