-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.py
56 lines (45 loc) · 1.07 KB
/
test.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#!/usr/bin/python
"""
Unit testing for the functions in main
"""
__author__ = "Sunil"
__copyright__ = "Copyright 2015"
__license__ = "GNU License"
__version__ = "0.1.0"
__email__ = "[email protected]"
import sys
import unittest
from main import Add, Sub
class calc(unittest.TestCase):
def setUp(self):
"""
Setup the test cases
"""
pass
def tearDown(self):
"""
Teardown the test cases
"""
pass
def test_add_true(self):
"""
Test to check if the add returns correct value
"""
self.assertEqual(10, Add(3, 7))
def test_add_false(self):
"""
Test to check if the add wont' return incorrect value
"""
self.assertNotEqual(100, Add(3, 7))
def test_sub_true(self):
"""
test to check if sub returns correct value
"""
self.assertEqual(0, Sub(3, 3))
def test_sub_false(self):
"""
test to check if sub returns correct value
"""
self.assertNotEqual(10, Sub(38, 38))
if __name__ == "__main__":
unittest.main()