PyTest - Basics and Setup
What will be the output when running this unittest code?
import unittest
class TestMath(unittest.TestCase):
def test_subtract(self):
self.assertEqual(5 - 3, 2)
if __name__ == '__main__':
unittest.main()