Download as pdf or txt
Download as pdf or txt
You are on page 1of 4

SELEDIUM IDE TEST EXECUTION

TEST CASES USED:

1) Testing all the commands:

In this case I have generally tested all my commands provided on the


website including
 Sorting
 Calculating Minimum
 Calculating Maximum
 Calculating Average
 Reverse List
 SUM of all the Elements
 Total count of elements
 Unique Values
 Calculating Median
 Calculating Range
 Finding Prime Numbers
 Categorizing ODD/EVEN Numbers
 Search an Element
TEST CASE-->1
INPUT : 11,22,97,85,65, , 25

Sorted List: 11, 22, 25, 65, 85, 97, NaN


Minimum: NaN
Maximum: NaN
Average: NaN
Reversed List: 25, NaN, 65, 85, 97, 22, 11
Sum: NaN
Count: 7
Unique Values: 11, 22, 97, 85, 65, NaN, 25
Median: 65
Range: NaN
Prime Numbers: 11, 97, NaN
Even Numbers: 22
Odd Numbers: 11, 97, 85, 65, NaN, 25
Search: Element 97 found at index 2
2) Testing for a new case (ONLY ODD):

Only ODD numbers from the range of 10-20 has been provided as Input
to the site to check the proper working of Even/Odd Numbers function.

Output:
TEST CASE -->2
INPUT : 11,13,15,17,19

Sorted List: 11, 13, 15, 17, 19


Minimum: 11
Maximum: 19
Average: 15.00
Reversed List: 19, 17, 15, 13, 11
Sum: 75
Count: 5
Unique Values: 11, 13, 15, 17, 19
Median: 15
Range: 8
Prime Numbers: 11, 13, 17, 19
Even Numbers:
Odd Numbers: 11, 13, 15, 17, 19
Search: Element 12 not found in the list.
3) Testing for an EMPTY List

In this case we provided an empty list to the system and the out is
generated.

TEST CASE -->3


INPUT : , , ,

Sorted List: NaN, NaN, NaN, NaN


Minimum: NaN
Maximum: NaN
Average: NaN
Reversed List: NaN, NaN, NaN, NaN
Sum: NaN
Count: 4
Unique Values: NaN
Median: NaN
Range: NaN
Prime Numbers: NaN, NaN, NaN, NaN
Even Numbers:
Odd Numbers: NaN, NaN, NaN, NaN
Element NaN not found in the list

You might also like