You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Test Creator - Make test files
USAGE
test-creator [option]
test-creator [arg: test_filename] [arg: num_test_cases]
ARGUMENTS
test_filename <string>
The test's filename.
num_test_cases <number>
The number of test cases to write in the test file.
OPTIONS
-h, --help
Show this menu.
-v, --version
Show this CLI's version.
The text was updated successfully, but these errors were encountered:
Summary
What:
Currently, the argument validation only checks to see that the arguments were specified:
We should do argument validation on the "type" of the argument. For example, I want to make 10 test files using
rhum
like this:With the above command, Line should check that
10
is a number.Why:
It would be nice to have built-in argument type validation.
Acceptance Criteria
Below is a list of tasks that must be completed before this issue can be closed.
Example Pseudo Code (for implementation)
Signature property
Help Menu
The text was updated successfully, but these errors were encountered: