Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(561)

Unified Diff: core/src/fxcrt/fx_basic_bstring_unittest.cpp

Issue 830553002: Merge: Create pdfium_unittests binary. [XFA] (Closed) Base URL: https://pdfium.googlesource.com/pdfium.git@xfa
Patch Set: Created 6 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « BUILD.gn ('k') | pdfium.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/src/fxcrt/fx_basic_bstring_unittest.cpp
diff --git a/core/src/fxcrt/fx_basic_bstring_unittest.cpp b/core/src/fxcrt/fx_basic_bstring_unittest.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..cf5e05d1ef9612b82842bdf13b25ada9dd3684da
--- /dev/null
+++ b/core/src/fxcrt/fx_basic_bstring_unittest.cpp
@@ -0,0 +1,42 @@
+// Copyright 2014 PDFium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+#include "testing/gtest/include/gtest/gtest.h"
+
+#include "../../include/fxcrt/fx_basic.h"
+
+TEST(fxcrt, ByteStringCNull) {
+ CFX_ByteStringC null_string;
+ EXPECT_EQ(null_string.GetPtr(), nullptr);
+ EXPECT_EQ(null_string.GetLength(), 0);
+ EXPECT_TRUE(null_string.IsEmpty());
+
+ CFX_ByteStringC another_null_string;
+ EXPECT_TRUE(null_string == another_null_string);
+
+ CFX_ByteString copied_null_string(null_string);
+ EXPECT_EQ(null_string.GetPtr(), nullptr);
+ EXPECT_EQ(null_string.GetLength(), 0);
+ EXPECT_TRUE(null_string.IsEmpty());
+ EXPECT_TRUE(null_string == another_null_string);
+
+ CFX_ByteStringC empty_string("");
+ EXPECT_EQ(null_string.GetPtr(), nullptr);
+ EXPECT_EQ(null_string.GetLength(), 0);
+ EXPECT_TRUE(null_string.IsEmpty());
+ EXPECT_TRUE(null_string == empty_string);
+
+ CFX_ByteStringC non_null_string("a");
+ EXPECT_FALSE(null_string == non_null_string);
+
+ // TODO(tsepez): fix assignment of a null ptr to a CFX_ByteStringC.
+}
+
+TEST(fxcrt, ByteStringCGetID) {
+ CFX_ByteStringC null_string;
+ EXPECT_EQ(null_string.GetID(), 0u);
+
+ CFX_ByteStringC empty_string("");
+ EXPECT_EQ(empty_string.GetID(), 0u);
+}
« no previous file with comments | « BUILD.gn ('k') | pdfium.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698