| OLD | NEW | 
|---|
| (Empty) |  | 
|  | 1 /* | 
|  | 2  * This file is part of Adblock Plus <https://adblockplus.org/>, | 
|  | 3  * Copyright (C) 2006-present eyeo GmbH | 
|  | 4  * | 
|  | 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 | 
|  | 7  * published by the Free Software Foundation. | 
|  | 8  * | 
|  | 9  * Adblock Plus is distributed in the hope that it will be useful, | 
|  | 10  * but WITHOUT ANY WARRANTY; without even the implied warranty of | 
|  | 11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the | 
|  | 12  * GNU General Public License for more details. | 
|  | 13  * | 
|  | 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/>. | 
|  | 16  */ | 
|  | 17 | 
|  | 18 #include <string> | 
|  | 19 #include "gtest/gtest.h" | 
|  | 20 #include "compiled/String.h" | 
|  | 21 | 
|  | 22 TEST(TestString, constructInvalidDependentString) | 
|  | 23 { | 
|  | 24   DependentString s; | 
|  | 25   EXPECT_TRUE(s.is_invalid()); | 
|  | 26 | 
|  | 27   DependentString s2(s); | 
|  | 28   EXPECT_TRUE(s2.is_invalid()); | 
|  | 29 } | 
|  | 30 | 
|  | 31 TEST(TestString, constructInvalidOwnedString) | 
|  | 32 { | 
|  | 33   OwnedString s; | 
|  | 34   EXPECT_TRUE(s.is_invalid()); | 
|  | 35 | 
|  | 36   // Valid string | 
|  | 37   OwnedString s2(2); | 
|  | 38   EXPECT_FALSE(s2.is_invalid()); | 
|  | 39 | 
|  | 40   // Ensure we still have an invalid string. | 
|  | 41   OwnedString s3(s); | 
|  | 42   EXPECT_TRUE(s3.is_invalid()); | 
|  | 43 | 
|  | 44   // Empty valid string lead to valid string. | 
|  | 45   OwnedString s4(u""_str); | 
|  | 46   EXPECT_FALSE(s4.is_invalid()); | 
|  | 47 } | 
|  | 48 | 
| OLD | NEW | 
|---|