test/cli_argument_parser: notes outlining what additional tests are needed

BodgeMaster-unfinished
BodgeMaster 2022-07-15 19:47:07 +02:00
parent db6e543c5c
commit 4ceaca745b
1 changed files with 5 additions and 0 deletions

View File

@ -186,5 +186,10 @@ int main(int argc, char* argv[]) {
//TODO add tests for invalid input
std::cerr << "TODO: invalid input tests" << std::endl;
// test cases for invalid input:
// - unknown flags, arguments (mixed with other input and standalone)
// - too few, too many positional arguments (mixed with other input and standalone)
// - check the produced error messages
return 0;
}