0
Wat is doing deze python code
import unittest class Testing(unittest.TesCase): def test_string(self): a = 'patatos ' b = 'patatos ' self.assertEqual(a, b) def test_boolean(self): a = True b = True self.asserEqual(a, b) if __name__ == "__main__": unittest,mai()
1 Antwort
0
importing module unittest and testing the code