Moved from UnitTestBot/UTBotCpp#324
Description
Add conditional (ternary) operator ? : support.
Current behavior
Source code:
int ternary_positive(int n) {
int res = n >= 0 ? 1 : 0;
return res;
}
Only one test generated
Expected behavior More tests generated.