| 53 | } |
| 54 | |
| 55 | static bool testAssignFromNullPtr() |
| 56 | { |
| 57 | std::cout << "testAssignFromNullPtr()\n"; |
| 58 | cm::String str; |
| 59 | str = nullptr; |
| 60 | return testFromNullPtr(str); |
| 61 | } |
| 62 | |
| 63 | static bool testFromCStrNull(cm::String str) |
| 64 | { |
nothing calls this directly
no test coverage detected
searching dependent graphs…