fix tests

This commit is contained in:
2023-07-12 19:37:59 +03:00
parent 4d395f4487
commit 299a009d61

View File

@@ -81,36 +81,6 @@ TEST(PIString_Tests, operator_concatenation_pistring_zero_zero) {
ASSERT_EQ(str1, ""); ASSERT_EQ(str1, "");
} }
TEST(PIString_Tests, operator_concatenation_piByteArray) {
PIString str1 = "AB C";
PIByteArray str2;
str2.append('g');
str1 += str2;
ASSERT_EQ(str1, "AB Cg");
}
TEST(PIString_Tests, operator_concatenation_piByteArray_zero1) {
PIString str1 = "";
PIByteArray str2;
str2.append('0');
str1 += str2;
ASSERT_EQ(str1, "0");
}
TEST(PIString_Tests, operator_concatenation_piByteArray_zero2) {
PIString str1 = "AB C";
PIByteArray str2;
str1 += str2;
ASSERT_EQ(str1, "AB C");
}
TEST(PIString_Tests, operator_concatenation_piByteArray_zero_zero) {
PIString str1;
PIByteArray str2;
str1 += str2;
ASSERT_EQ(str1, "");
}
TEST(PIString_Tests, construct_pistring) { TEST(PIString_Tests, construct_pistring) {
PIString str1 = "New"; PIString str1 = "New";
PIString str(str1); PIString str(str1);
@@ -152,7 +122,7 @@ TEST(PIString_Tests, construct_from_pibyte_array) {
PIByteArray str1; PIByteArray str1;
str1.append('m'); str1.append('m');
PIString res = "m"; PIString res = "m";
ASSERT_EQ(res, PIString(str1)); ASSERT_EQ(res, PIString::fromUTF8(str1));
} }
TEST(PIString_Tests, construct_from_pichar_array) { TEST(PIString_Tests, construct_from_pichar_array) {