Question: A developer is setting up several assert tests for an app. The tests are as follows: test1 should test to see if a calculation is
A developer is setting up several assert tests for an app. The tests are as follows: test1 should test to see if a calculation is true or false. test2 should test to see if an item is within a list of items. test3 should test to see if an object belongs to a class. Using the dropdown lists, choose the correct assert test for each unit test. assertInstance def test1(self) : assertls self. (5+3 * 4 == 17) assertEqual def test2(self) : a = 'clock' assertTrue b = [ 'clock' , 'watch' , 'phone' ] assert sInstance self. (a, b) assertIninstance def test3(self) : game = Game( ) assertin self. (game, Game) CertPREP
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
