| Left: | ||
| Right: |
| LEFT | RIGHT |
|---|---|
| 1 /* | 1 /* |
| 2 * This file is part of Adblock Plus <https://adblockplus.org/>, | 2 * This file is part of Adblock Plus <https://adblockplus.org/>, |
| 3 * Copyright (C) 2006-present eyeo GmbH | 3 * Copyright (C) 2006-present eyeo GmbH |
| 4 * | 4 * |
| 5 * Adblock Plus is free software: you can redistribute it and/or modify | 5 * Adblock Plus is free software: you can redistribute it and/or modify |
| 6 * it under the terms of the GNU General Public License version 3 as | 6 * it under the terms of the GNU General Public License version 3 as |
| 7 * published by the Free Software Foundation. | 7 * published by the Free Software Foundation. |
| 8 * | 8 * |
| 9 * Adblock Plus is distributed in the hope that it will be useful, | 9 * Adblock Plus is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 * GNU General Public License for more details. | 12 * GNU General Public License for more details. |
| 13 * | 13 * |
| 14 * You should have received a copy of the GNU General Public License | 14 * You should have received a copy of the GNU General Public License |
| 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 15 * along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| 16 */ | 16 */ |
| 17 | 17 |
| 18 #include <string> | 18 #include <string> |
| 19 #include "gtest/gtest.h" | 19 #include "gtest/gtest.h" |
| 20 #include "compiled/String.h" | 20 #include "compiled/String.h" |
| 21 | 21 |
| 22 TEST(TestString, DependentString) | 22 TEST(TestString, constructInvalidDependentString) |
| 23 { | 23 { |
| 24 DependentString s; | 24 DependentString s; |
| 25 EXPECT_TRUE(s.is_invalid()); | 25 EXPECT_TRUE(s.is_invalid()); |
| 26 | 26 |
| 27 DependentString s2(s); | 27 DependentString s2(s); |
| 28 EXPECT_TRUE(s2.is_invalid()); | 28 EXPECT_TRUE(s2.is_invalid()); |
| 29 } | 29 } |
| 30 | 30 |
| 31 TEST(TestString, OwnedString) | 31 TEST(TestString, constructInvalidOwnedString) |
|
sergei
2018/01/29 13:38:44
It's not important for this change set but in gene
hub
2018/01/29 16:57:46
Done.
| |
| 32 { | 32 { |
| 33 OwnedString s; | 33 OwnedString s; |
| 34 EXPECT_TRUE(s.is_invalid()); | 34 EXPECT_TRUE(s.is_invalid()); |
| 35 | 35 |
| 36 // Valid string | 36 // Valid string |
| 37 OwnedString s2(2); | 37 OwnedString s2(2); |
| 38 EXPECT_FALSE(s2.is_invalid()); | 38 EXPECT_FALSE(s2.is_invalid()); |
| 39 | 39 |
| 40 // Ensure we still have an invalid string. | 40 // Ensure we still have an invalid string. |
| 41 OwnedString s3(s); | 41 OwnedString s3(s); |
| 42 EXPECT_TRUE(s3.is_invalid()); | 42 EXPECT_TRUE(s3.is_invalid()); |
| 43 | 43 |
| 44 // Empty valid string lead to valid string. | 44 // Empty valid string lead to valid string. |
| 45 OwnedString s4(u""_str); | 45 OwnedString s4(u""_str); |
| 46 EXPECT_FALSE(s4.is_invalid()); | 46 EXPECT_FALSE(s4.is_invalid()); |
| 47 } | 47 } |
| 48 | 48 |
| LEFT | RIGHT |