-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_solution.py
46 lines (42 loc) · 997 Bytes
/
test_solution.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
import pytest
import solution
def test_path_finding():
class _s:
o=''
def p(o): _s.o = o
i = iter(['2', '2', '00', '00'])
solution.input = lambda: next(i)
solution.print = p
solution.solution1()
print(_s.o)
assert _s.o == 2
def test_dynamic_approach():
class _s:
o=''
def p(o): _s.o = o
i = iter(['2', '2', '00', '00'])
solution.input = lambda: next(i)
solution.print = p
solution.solution2()
print(_s.o)
assert _s.o == 2
def test_path_finding2():
class _s:
o=''
def p(o): _s.o = o
i = iter(['3', '3', '000', '000', '000'])
solution.input = lambda: next(i)
solution.print = p
solution.solution1()
print(_s.o)
assert _s.o == 6
def test_dynamic_approach2():
class _s:
o=''
def p(o): _s.o = o
i = iter(['3', '3', '000', '000', '000'])
solution.input = lambda: next(i)
solution.print = p
solution.solution2()
print(_s.o)
assert _s.o == 6