-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtests.py
56 lines (41 loc) · 1.09 KB
/
tests.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
import unittest
from maze import Maze
class Tests(unittest.TestCase):
def test_maze_create_cells(self):
num_cols = 12
num_rows = 10
m1 = Maze(0, 0, num_rows, num_cols, 10, 10)
self.assertEqual(
len(m1._cells),
num_cols,
)
self.assertEqual(
len(m1._cells[0]),
num_rows
)
def test_maze_xlarge(self):
num_cols = 1200
num_rows = 1000
m1 = Maze(0, 0, num_rows, num_cols, 3, 3)
self.assertEqual(
len(m1._cells),
num_cols
)
self.assertEqual(
len(m1._cells[0]),
num_rows
)
def test_maze_break_entrance_and_exit(self):
num_col = 12
num_row = 10
m1 = Maze(0, 0, num_row, num_col, 10, 10)
self.assertEqual(
m1._cells[0][0].has_top_wall,
False
)
self.assertEqual(
m1._cells[num_col - 1][num_row-1].has_bottom_wall,
False
)
if __name__ == "__main__":
unittest.main()