-
Notifications
You must be signed in to change notification settings - Fork 0
/
sampleTests-2.py
59 lines (51 loc) · 1.69 KB
/
sampleTests-2.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
import unittest
from solverFuncs import *
class TestCases(unittest.TestCase):
def test_check_rows0(self):
puzzle = []
puzzle.append([5, 1, 2, 3, 4])
puzzle.append([1, 2, 3, 4, 5])
puzzle.append([2, 3, 0, 5, 1])
puzzle.append([3, 0, 0, 1, 2])
puzzle.append([0, 0, 0, 0, 0])
self.assertTrue(check_rows_valid(puzzle))
def test_check_columns0(self):
puzzle = []
puzzle.append([5, 1, 2, 3, 4])
puzzle.append([1, 2, 3, 4, 5])
puzzle.append([2, 3, 0, 5, 1])
puzzle.append([3, 0, 0, 1, 2])
puzzle.append([0, 0, 0, 0, 0])
self.assertTrue(check_columns_valid(puzzle))
def test_check_cages0(self):
puzzle = []
puzzle.append([5, 1, 2, 3, 4])
puzzle.append([1, 2, 3, 4, 5])
puzzle.append([2, 3, 0, 5, 1])
puzzle.append([3, 0, 0, 1, 2])
puzzle.append([0, 0, 0, 0, 0])
cages = []
cages.append([6, 2, 0, 5])
cages.append([7, 3, 2, 6, 7])
cages.append([9, 2, 4, 9])
self.assertTrue(check_cages_valid(puzzle, cages))
def test_check_valid0(self):
puzzle = []
puzzle.append([5, 1, 2, 3, 4])
puzzle.append([1, 2, 3, 4, 5])
puzzle.append([2, 3, 0, 5, 1])
puzzle.append([3, 0, 0, 1, 2])
puzzle.append([0, 0, 0, 0, 0])
cages = []
cages.append([6, 2, 0, 5])
cages.append([7, 3, 2, 6, 7])
cages.append([9, 2, 4, 9])
self.assertTrue(check_valid(puzzle, cages))
def test_get_cages0(self):
cages = [[5, 2, 0, 5],
[3, 1, 1],
[8, 3, 2, 3, 4]]
self.assertEqual(cages, get_cages())
# Run the unit tests.
if __name__ == '__main__':
unittest.main()