| 82 | } |
| 83 | |
| 84 | static bool testAssignFromCStrNull() |
| 85 | { |
| 86 | std::cout << "testAssignFromCStrNull()\n"; |
| 87 | char const* null = nullptr; |
| 88 | cm::String str; |
| 89 | str = null; |
| 90 | return testFromCStrNull(str); |
| 91 | } |
| 92 | |
| 93 | static char const charArray[] = "abc"; |
| 94 |
nothing calls this directly
no test coverage detected
searching dependent graphs…