PYTHON PYTHON PYTHON PYTHON PYTHON PYTHON PYTHON PYTHON PYTHON PYTHON PYTHON PYTHON PYTHON PYTHON
Don't use plagiarized sources. Get Your Custom Essay on
Question & Answer: C. At specific x,y coordinates in a Frame. d. In a grid layout. e. Inside nested for-loops Check Question 8 Not complete Marked out of 1.00…..
GET AN ESSAY WRITTEN FOR YOU FROM AS LOW AS $13/PAGE
C. At specific x,y coordinates in a Frame. d. In a grid layout. e. Inside nested for-loops Check Question 8 Not complete Marked out of 1.00 Which of the following are valid Unittest assertions? Select one or more: a. assertEqual Flag question 口b.assertWithin O c. assertNotEqual d, assertTrue e.assertSame O f. assertDifferent Check You are logged in as Saad Shafique (Log out) Cisc106-17J
Expert Answer
assertEqual(var1,var2,msg=None);
To check with the expected Result.For example checks whether a==b
assertNotEqual(var1, var2, msg=None)
This is used to check whether a!=b
assertTrue(expr,mssg=None)
It checks with boolean value bool(x) is True.
These are the assertions used in the unittest of Python