Selenium Python - Test Framework Integration (pytest)
What will be the output when running this test code snippet?
import unittest
class MyTest(unittest.TestCase):
def test_pass(self):
self.assertEqual(2 + 2, 4)
def test_fail(self):
self.assertTrue(False)
if __name__ == '__main__':
unittest.main(exit=False)