forked from platformps/exercise.python_fundamentals
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpredicator_test.py
62 lines (51 loc) · 1.9 KB
/
predicator_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
57
58
59
60
61
62
# Created by Leon Hunter at 11:23 AM 10/24/2020
from unittest import TestCase
from src.main.predicator import Predicator
class PredicatorTester(TestCase):
def _test(self, method_to_be_tested, value_sets):
for value_set in value_sets:
# given
first_value = value_set[0]
expected_calculation = value_set[1]
# when
actual_calculation = method_to_be_tested(first_value)
calculation_error_message = '''
first_value = {}
expected_calculation = {}
actual_calculation = {}
'''.format(first_value, expected_calculation, actual_calculation)
return_type_error_message = '''
expected return value of `{}` to be of type `bool`
instead was of type `{}`
'''.format(method_to_be_tested.__name__, type(actual_calculation))
# then
self.assertTrue(isinstance(actual_calculation, bool), return_type_error_message)
self.assertAlmostEqual(expected_calculation, actual_calculation, calculation_error_message)
def test_is_greater_than_5(self):
self._test(Predicator().is_greater_than_5, [
(1, False),
(5, False),
(6, True),
(7, True)
])
def test_is_greater_than_8(self):
self._test(Predicator().is_greater_than_8, [
(1, False),
(8, False),
(10, True),
(17, True)
])
def test_is_less_than_1(self):
self._test(Predicator().is_less_than_1, [
(5, False),
(1, False),
(-6, True),
(-7, True)
])
def test_is_less_than_4(self):
self._test(Predicator().is_less_than_4, [
(5, False),
(4, False),
(2, True),
(-7, True)
])