OLD | NEW |
1 // Copyright 2014 PDFium Authors. All rights reserved. | 1 // Copyright 2014 PDFium Authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "testing/gtest/include/gtest/gtest.h" | 5 #include "testing/gtest/include/gtest/gtest.h" |
6 | 6 #include "testing/fx_string_testhelpers.h" |
7 #include "../../include/fxcrt/fx_basic.h" | 7 #include "../../include/fxcrt/fx_basic.h" |
8 | 8 |
9 TEST(fxcrt, ByteStringCNull) { | 9 TEST(fxcrt, ByteStringCNull) { |
10 CFX_ByteStringC null_string; | 10 CFX_ByteStringC null_string; |
11 EXPECT_EQ(null_string.GetPtr(), nullptr); | 11 EXPECT_EQ(null_string.GetPtr(), nullptr); |
12 EXPECT_EQ(null_string.GetLength(), 0); | 12 EXPECT_EQ(null_string.GetLength(), 0); |
13 EXPECT_TRUE(null_string.IsEmpty()); | 13 EXPECT_TRUE(null_string.IsEmpty()); |
14 | 14 |
15 CFX_ByteStringC another_null_string; | 15 CFX_ByteStringC another_null_string; |
16 EXPECT_TRUE(null_string == another_null_string); | 16 EXPECT_TRUE(null_string == another_null_string); |
(...skipping 16 matching lines...) Expand all Loading... |
33 // TODO(tsepez): fix assignment of a null ptr to a CFX_ByteStringC. | 33 // TODO(tsepez): fix assignment of a null ptr to a CFX_ByteStringC. |
34 } | 34 } |
35 | 35 |
36 TEST(fxcrt, ByteStringCGetID) { | 36 TEST(fxcrt, ByteStringCGetID) { |
37 CFX_ByteStringC null_string; | 37 CFX_ByteStringC null_string; |
38 EXPECT_EQ(null_string.GetID(), 0u); | 38 EXPECT_EQ(null_string.GetID(), 0u); |
39 | 39 |
40 CFX_ByteStringC empty_string(""); | 40 CFX_ByteStringC empty_string(""); |
41 EXPECT_EQ(empty_string.GetID(), 0u); | 41 EXPECT_EQ(empty_string.GetID(), 0u); |
42 } | 42 } |
OLD | NEW |