We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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.
The text was updated successfully, but these errors were encountered:
S1eGa
No branches or pull requests
Moved from UnitTestBot/UTBotCpp#324
Description
Add conditional (ternary) operator
? :
support.Current behavior
Source code:
Only one test generated
Expected behavior More tests generated.
The text was updated successfully, but these errors were encountered: