There is one input field and random button in the Form. Functionality is when I click random button; it has to generate the random numbers for specified range. Write positive and negative test case for this scenario.
Specification:
Input field accepts only with range of 10-100 numbers and there is one. It should not accept below the range of 10 and after 100 numbers
Positive Test case:
11 - 99 and click on the Random button. It will generate the test cases starting from 11 to 99. Enter 22-88 in input field and it will generate random numbers from 22 to 88.
Negative Test case:
Enter 20-20 and click on the random button .It cannot generate random numbers.

