from unittest import TestCase

class TestDummy(TestCase):
    def test_add(self):
        self.assertEqual(1+1, 2)
