I would really appreciate it if you can please explain how the following test were performed. I need to perform peer reviews of the following Currency Conversion Test Procedure and answer some questions about it. If you can just help explain how would I perform the the test cases? Below is the peer review:

Display Menu Test Cases

Test Case 1: Valid Menu Selection = Canadian Dollars
Inputs: Menu Selection = 1
Expected Outputs:
“Do you want to continue with the conversion, Y = Yes, N = No”
Currency_Type = 1
Test Case 2: Valid Menu Selection = Mexican Dollars
Inputs: Menu Selection = 2
Expected Outputs:
“Do you want to continue with the conversion, Y = Yes, N = No”
Currency_Type = 2

Test Case 3: Valid Menu Selection = English Dollars
Inputs: Menu Selection = 3
Expected Outputs:
“Do you want to continue with the conversion, Y = Yes, N = No”
Currency_Type = 3
Test Case 4: Valid Menu Selection = Japanese Dollars
Inputs: Menu Selection = 4
Expected Outputs:
“Do you want to continue with the conversion, Y = Yes, N = No”
Currency_Type = 4

Test Case 5: Valid Menu Selection = French Dollars
Inputs: Menu Selection = 5
Expected Outputs:
“Do you want to continue with the conversion, Y = Yes, N = No”
Currency_Type = 5

Test Case 6: Valid Menu Selection = No Country
Inputs: Menu Selection = 6
Expected Outputs:
“Quitting Currency Conversion”
Currency_Type = 6

I have included the following assignment which was to generate set of test inputs and expected results for the Currency Conversion program. Here is what I turned in. I am struggling and would hope to get some further assistance. Thank you.

Display Menu Test Cases
EXAMPLE
Test Case 1: Valid Menu Selection = Canadian Dollars

Inputs: Menu Selection = 1
Expected Outputs:
“Do you want to continue with the conversion, Y = Yes, N = No”
Currency_Type = 1
Test Case 2: Valid Menu Selection= Quit

Inputs: Menu Selection = 6
Expected Outputs:
“Do you want to Quit, Y = Yes, N = No”
Currency Type = 1
Test Case 3: Invalid Menu Selection = 9
Inputs: Menu Selection = 9
Expected Outputs:
“Error 4: Please make a valid menu selection”
“Hit any character or number to continue”
Menu is redisplayed

To perform the test cases for the Display Menu, you would follow these steps:

1. Start by running the Currency Conversion program.
2. For each test case, input the corresponding Menu Selection as mentioned in the test case.
3. Observe the output displayed by the program.
4. Compare the observed output with the expected output mentioned in the test case.
5. If the observed output matches the expected output, mark the test case as "Passed". If they don't match, mark the test case as "Failed".
6. Repeat steps 2-5 for each test case.

Let's go through the test cases mentioned in your peer review:

Test Case 1:
- Input: Menu Selection = 1
- Expected output: "Do you want to continue with the conversion, Y = Yes, N = No" and Currency_Type = 1
- Perform the steps mentioned above to validate if the actual output matches the expected output.

Test Case 2:
- Input: Menu Selection = 2
- Expected output: "Do you want to continue with the conversion, Y = Yes, N = No" and Currency_Type = 2
- Repeat the steps to validate this test case.

Test Case 3:
- Input: Menu Selection = 3
- Expected output: "Do you want to continue with the conversion, Y = Yes, N = No" and Currency_Type = 3
- Follow the steps to validate this test case.

Test Case 4:
- Input: Menu Selection = 4
- Expected output: "Do you want to continue with the conversion, Y = Yes, N = No" and Currency_Type = 4
- Validate this test case using the same approach.

Test Case 5:
- Input: Menu Selection = 5
- Expected output: "Do you want to continue with the conversion, Y = Yes, N = No" and Currency_Type = 5
- Apply the steps to validate this test case.

Test Case 6:
- Input: Menu Selection = 6
- Expected output: "Quitting Currency Conversion" and Currency_Type = 6
- Perform the steps mentioned above to validate this test case.

During the test execution, you should also consider any error messages or prompts mentioned in the expected outputs and compare them with the actual outputs. If there are any mismatches, mark the test case as "Failed" and note down the difference to report it.