| 519 | } |
| 520 | |
| 521 | static bool testOperatorStdStringPlusEqual() |
| 522 | { |
| 523 | std::cout << "testOperatorStdStringPlusEqual()\n"; |
| 524 | std::string s = "a"; |
| 525 | s += cm::String("b"); |
| 526 | ASSERT_TRUE(s == "ab"); |
| 527 | return true; |
| 528 | } |
| 529 | |
| 530 | static bool testMethod_borrow() |
| 531 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…