summaryrefslogtreecommitdiff
path: root/AlgoDesignAndTechniqueEdxPython/tests/a_plus_bTest.py
blob: afea1d147bd29a0a35c8f681947fa37f46f51e74 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
'''
Created on Jul 26, 2018

@author: haidong
'''
import unittest

from sources.aplusb import add  # @UnresolvedImport

class Test(unittest.TestCase):


    def testName(self):
        self.assertEqual(5, add(2,3))


if __name__ == "__main__":
    #import sys;sys.argv = ['', 'Test.testName']
    unittest.main()