-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtests.py
45 lines (37 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
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_break_entrance_and_exit(self):
num_cols = 12
num_rows = 10
m1 = Maze(0, 0, num_rows, num_cols, 10, 10)
m1._break_entrance_and_exit()
self.assertFalse(
m1._cells[0][0].has_top_wall
)
self.assertFalse(
m1._cells[num_cols - 1][num_rows - 1].has_bottom_wall
)
def test_maze_reset_cells_visited(self):
num_cols = 12
num_rows = 10
m1 = Maze(0, 0, num_rows, num_cols, 10, 10) # reset maze is called during init
for col in m1._cells:
for cell in col:
self.assertFalse(
cell.visited
)
if __name__ == "__main__":
unittest.main()