Testing Fundamentals - Testing Types and Levels
Find the bug in this unit test code:
import unittest
def divide(a, b):
return a / b
class TestDivide(unittest.TestCase):
def test_divide(self):
self.assertEqual(divide(10, 0), 0)
if __name__ == '__main__':
unittest.main()