Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

need Help !!!!!!! so confused !!!! Python [4 pts] Write the unittest script to perform your testing for both functions encrypt and decryptusing the unittest

need Help !!!!!!! so confused !!!! Python

  1. [4 pts] Write the unittest script to perform your testing for both functions encrypt and decryptusing the unittest module and prove that they work properly. Remember to be as descriptive as possible and write as many cases as necessary (check the Hands On video for example of a description). Unittest is intended to run test cases in bulk, so it should contain enough test cases to prove your code works. Discuss possible edge cases during your recitation. Do not include the doctest cases

    Deliverables:

    • Submit your encrypt and decrypt code in a file named LAB4.py to the Lab4 GradeScope

      assignment before the due date

    • Submit your unittest code in a file named test.py to the Lab4 CANVAS assignment before

      the due date

Notes: One of the purposes of unit testing is to provide evidence that everything was tested and it works properly. Feedback will be provided if your code does not work according to the assignment requirements, but no partial credit will be given. You can usehttps://www.braingle.com/brainteasers/codes/caesar.php#form to create test cases

image text in transcribed

def encrypt (message, key): >>encrypt ("Hello world",12) Taxxa iadxp' >>> encrypt( "We are Penn State ! ! ! ",6) >>>encrypt ("We are Penn State!!!", 5) >>encrypt (5.6,3) error' encrypt ('Hello" ,3.5) error' encrypt (56, 3 . 15) error YOU CODE STARTS HERE def decrypt (message, key): >>> decrypt ('' 1dxp >>decrypt ("Ck gxk Vktt Yzqzk!! !",6) We are Penn State!!!' >>> decrypt ("Bj fwj Ujss Xyfyj!!! ", 5) 'We are Penn State!!!' >>decrypt (5.6,3) error' >>> decrypt( ' Hello ' , 3 . 5) error' >>> decrypt (5.6,3.15) error' YOU CODE STARTS HERE

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

Focus On Geodatabases In ArcGIS Pro

Authors: David W. Allen

1st Edition

1589484452, 978-1589484450

More Books

Students also viewed these Databases questions