Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Introduction Last week, you applied black box testing techniques. This meant that you had no access to the source and had to write your tests

Introduction

Last week, you applied black box testing techniques. This meant that you had no access to the source and had to write your tests based solely on the specification. This week, you will apply white box testing techniques. Therefore, I am providing you with the code you will be testing. Also, since white box testing doesn't care about the specification, the function under test is purely contrived and serves no purpose! Well, that isn't entirely true, the purpose is to give you an opportunity to flex your coverage muscles, but it doesn't do anything.

Course Learning Outcome(s):

Apply testing techniques, including black-box and white-box techniques, automatic testing activities, and regression testing (CLO 4)

Module Learning Outcome(s):

Apply white box testing techniques

Description

For this assignment, you will have to achieve 100% Branch and Condition Coverage. For this assignment, this means that for each conditional statement, you need to have a test case for each combination of conditions. So if your conditional statement was a or b you would need to have a test case for each row of the following truth table:image text in transcribed

Again, this function's only purpose is as a learning aid; it doesn't do anything. DO NOT try to rationalize its behavior! This function is contained within contrived_func.py, so make sure you are importing the correct file.

You need to write a series of unit tests that attempt to meet 100% Branch and Condition Coverage. Once submitted to Gradescope, the autograder will run the tests against a modified version of the above code. The contrived_func on Gradescope is functionally equivalent but includes print statements when each condition combination is triggered. There are 18 such triggers, labeled C* (with * representing a number). You will only receive full credit for the autograded portion if your test suite triggers all 12 print statements.

Outside of the autograded portion, your test suite will also be graded based on how many tests were required to uncover all 18 triggers. Full points will only be rewarded if you can do it with 8 or fewer test cases. Please note that if your tests do not pass the autograder with full marks, you will not be eligible for these Efficient Testing points. Also, for the purposes of the efficiency points, each assert/call to contrived_func counts as a single test, so there is no putting in multiple asserts in each test case.

Finally, as was the case last week, your test suite needs to be free of linting errors.

Hints

Truth Tables

You should immediately notice from GradeScope that the names of the conditions we are trying to trigger are not sequential. For example, there are C3 and C4, but no C1 or C2. This is because they are named after given rows from the truth tables I generated when crafting this assignment. You will find that some rows are not possible to verify every conditional in every permutation (T or F will never evaluate the F due to short circuit evaluation). You can only write a test for rows that are possible.

Therefore, I highly recommend you write out, by hand, the truth tables for each conditional statement. You should also ask yourself the question, how does having a nested if affect the truth tables? Feel free to discuss this topic on Ed, but do not share your actual tables themselves.

Misc

You will need to include

if __name__ == '__main__': unittest.main() 

Feel free to take the provided source above and create your own contrived_func.py to run your tests against to help find errors with your testing file

If you recall what I said in the exploration, Branch and Condition coverage is usually not done due to the number of tests required. We are doing it here because we are only testing a single function, not an entire program. The function under test is defined below. Behold! The Source

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Marketing Database Analytics

Authors: Andrew D. Banasiewicz

1st Edition

0415657881, 978-0415657884

More Books

Students also viewed these Databases questions

Question

List behaviors to improve effective leadership in meetings

Answered: 1 week ago