We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Add possibility to generate tests for function with parameters overloading. like
int sum(int a, int b) { return a + b; } int sum(int a, int b, int c) { return a + b + c; }
hint: also add human readable test name for such functions
Status