summaryrefslogtreecommitdiff
path: root/21/test.py
blob: 4527f4975b2d0f5f3890e7c5fa48cafe364c7989 (plain)
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
#!/usr/bin/python

import unittest

import main



class ExamplesPart1(unittest.TestCase):
    def test_example1(self):
        player = main.Entity()
        player.health = 8
        player.damage = 0
        player.armour = 0

        boss = main.Entity()
        boss.health = 12
        boss.damage =  7
        boss.armour =  2

        result = main.solve_partn(1, player, boss)
        self.assertEqual(result, 40 + 25)



if __name__ == "__main__":
    unittest.main()