Question
This is all one problem. C# QA testing 1.Identify, using Boundary analysis, the minimum set of test cases that you would use to test the
This is all one problem. C# QA testing
1.Identify, using Boundary analysis, the minimum set of test cases that you would use to test the C# function int Factorial (int x) which, given an integer, returns its Factorial When writing the test cases please use this format: Input: int.MinValue Output: Exception 2.Identify, using Boundary Analysis, the set of test cases to test the function bool WasWinterOlympicYear(int year) that returns true if the winter olympics were held that year. Details on when the Winter Olympics are held can be found here: Link (Links to an external site.)Links to an external site.. Input: ... Output: ...
3.In your preferred programming language implement the factorial function as defined in question 1. Submit only the code for the function
4.In your preferred programming language implement the Winter Olympics year function as defined in question 2. Submit only the code for the function
5.Run the factorial test cases (Question 1) against your implementation of factorial (Question 3). List your results as follows: Input: ... - Expected Output: ... - Actual Output: ... - Result: Pass/Fail For this question it is alright if your code does not pass a test case. 6. Run the Winter Olympics year test cases (Question 2) against your implementation in Question 4. List your results as follows: Input: ... - Expected Output: ... - Actual Output: ... - Result: Pass/Fail For this question if it alright if your code does not pass a test case.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started