What call to action should be in your first line of code for a unit test?(1 point)

Responses

def()
def()

print()
print()

import unittest
import unittest

if statement
if statement

1 answer

The first line of code for a unit test should ideally start with an import statement to include the unittest module. Therefore, the correct response is:

import unittest

So the appropriate answer from the options would be:

import unittest
import unittest