-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_spnrze_options.py
175 lines (114 loc) · 4.99 KB
/
test_spnrze_options.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
import unittest
from spnrz_play import f1, f2, f3, f4, f5, f6, f7, f8, f9, f10
class Testf1(unittest.TestCase):
def test1(self):
self.assertEqual(f1("plaster", "man"), ("master", "plan"))
def test2(self):
self.assertEqual(f1("blushing", "crow"), ("crushing", "blow"))
def test3(self):
self.assertEqual(f1("litigating", "more"), ("mitigating", "lore"))
def test4(self):
self.assertEqual(f1("strong", "wrangler"), ("wrong", "strangler"))
def test5(self):
self.assertEqual(f1("def", "ghi"), ("ghef", "di"))
class Testf2(unittest.TestCase):
def test1(self):
self.assertEqual(f2("plaster", "man"), ("master", "plan"))
def test2(self):
self.assertEqual(f2("blushing", "crow"), ("crushing", "blow"))
def test3(self):
self.assertEqual(f2("litigating", "more"), ("mitigating", "lore"))
def test4(self):
self.assertEqual(f2("strong", "wrangler"), ("wrong", "strangler"))
def test5(self):
self.assertEqual(f2("def", "ghi"), ("ghef", "di"))
class Testf3(unittest.TestCase):
def test1(self):
self.assertEqual(f3("plaster", "man"), ("master", "plan"))
def test2(self):
self.assertEqual(f3("blushing", "crow"), ("crushing", "blow"))
def test3(self):
self.assertEqual(f3("litigating", "more"), ("mitigating", "lore"))
def test4(self):
self.assertEqual(f3("strong", "wrangler"), ("wrong", "strangler"))
def test5(self):
self.assertEqual(f3("def", "ghi"), ("ghef", "di"))
class Testf4(unittest.TestCase):
def test1(self):
self.assertEqual(f4("plaster", "man"), ("master", "plan"))
def test2(self):
self.assertEqual(f4("blushing", "crow"), ("crushing", "blow"))
def test3(self):
self.assertEqual(f4("litigating", "more"), ("mitigating", "lore"))
def test4(self):
self.assertEqual(f4("strong", "wrangler"), ("wrong", "strangler"))
def test5(self):
self.assertEqual(f4("def", "ghi"), ("ghef", "di"))
class Testf5(unittest.TestCase):
def test1(self):
self.assertEqual(f5("plaster", "man"), ("master", "plan"))
def test2(self):
self.assertEqual(f5("blushing", "crow"), ("crushing", "blow"))
def test3(self):
self.assertEqual(f5("litigating", "more"), ("mitigating", "lore"))
def test4(self):
self.assertEqual(f5("strong", "wrangler"), ("wrong", "strangler"))
def test5(self):
self.assertEqual(f5("def", "ghi"), ("ghef", "di"))
class Testf6(unittest.TestCase):
def test1(self):
self.assertEqual(f6("plaster", "man"), ("master", "plan"))
def test2(self):
self.assertEqual(f6("blushing", "crow"), ("crushing", "blow"))
def test3(self):
self.assertEqual(f6("litigating", "more"), ("mitigating", "lore"))
def test4(self):
self.assertEqual(f6("strong", "wrangler"), ("wrong", "strangler"))
def test5(self):
self.assertEqual(f6("def", "ghi"), ("ghef", "di"))
class Testf7(unittest.TestCase):
def test1(self):
self.assertEqual(f7("plaster", "man"), ("master", "plan"))
def test2(self):
self.assertEqual(f7("blushing", "crow"), ("crushing", "blow"))
def test3(self):
self.assertEqual(f7("litigating", "more"), ("mitigating", "lore"))
def test4(self):
self.assertEqual(f7("strong", "wrangler"), ("wrong", "strangler"))
def test5(self):
self.assertEqual(f7("def", "ghi"), ("ghef", "di"))
class Testf8(unittest.TestCase):
def test1(self):
self.assertEqual(f8("plaster", "man"), ("master", "plan"))
def test2(self):
self.assertEqual(f8("blushing", "crow"), ("crushing", "blow"))
def test3(self):
self.assertEqual(f8("litigating", "more"), ("mitigating", "lore"))
def test4(self):
self.assertEqual(f8("strong", "wrangler"), ("wrong", "strangler"))
def test5(self):
self.assertEqual(f8("def", "ghi"), ("ghef", "di"))
class Testf9(unittest.TestCase):
def test1(self):
self.assertEqual(f9("plaster", "man"), ("master", "plan"))
def test2(self):
self.assertEqual(f9("blushing", "crow"), ("crushing", "blow"))
def test3(self):
self.assertEqual(f9("litigating", "more"), ("mitigating", "lore"))
def test4(self):
self.assertEqual(f9("strong", "wrangler"), ("wrong", "strangler"))
def test5(self):
self.assertEqual(f9("def", "ghi"), ("ghef", "di"))
class Testf10(unittest.TestCase):
def test1(self):
self.assertEqual(f10("plaster", "man"), ("master", "plan"))
def test2(self):
self.assertEqual(f10("blushing", "crow"), ("crushing", "blow"))
def test3(self):
self.assertEqual(f10("litigating", "more"), ("mitigating", "lore"))
def test4(self):
self.assertEqual(f10("strong", "wrangler"), ("wrong", "strangler"))
def test5(self):
self.assertEqual(f10("def", "ghi"), ("ghef", "di"))
if __name__ == '__main__':
unittest.main()