Writing Integration and Unit Tests Quick Check 3 of 53 of 5 Items Question What call to action should be in your first line of code for a unit test?(1 point) Responses print() print() if statement if statement import unittest import unittest def() def() Skip to navigation page 9 of 9

1 answer

The correct call to action in your first line of code for a unit test is:

import unittest

This line imports the unittest module, which is necessary to create and run unit tests in Python.