Testcase-Generator
Testcase-Generator copied to clipboard
Create Structure of form GUI
Can you please elaborate the issue?
You have to add mocks for the UI.
The aim is to carry forward the single script file which had to be edited by user to a web portal. A web portal where we take in the solution file and ask the user for the following in some form:
- TC difficulty order (Ascending, Descending)
- Input format and constraint. (JSON like structure preferred), suppose you want to take number of test cases and then for each test case you want to take in number called n with constraints 1<=n<=10^9.
{
int: {
min: 1,
max: 100000,
child: {
int: {
min: 1, max: 10^9
}
}
},
}
And then we create script using data given by user We execute that to generate a zip and email that to desired email address.