| 938 | } |
| 939 | |
| 940 | const char* returnStringValueOrDefault_c(const char * defaultValue) |
| 941 | { |
| 942 | if (!hasReturnValue_c()) { |
| 943 | return defaultValue; |
| 944 | } |
| 945 | return stringReturnValue_c(); |
| 946 | } |
| 947 | |
| 948 | double doubleReturnValue_c() |
| 949 | { |
nothing calls this directly
no test coverage detected