This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
kse-02/tests/test_check_armstrong.py

30 lines
1.1 KiB
Python
Raw Normal View History

2023-12-09 13:43:29 +00:00
from unittest import TestCase
from benchmark.check_armstrong import check_armstrong
class Test_check_armstrong(TestCase):
2023-12-25 21:24:01 +00:00
# distances_true = {1: [156], 2: [155], 3: [6], 4: [0, 0, 0, 1], 5: [186]}
# distances_false = {1: [0], 2: [0], 3: [0], 4: [156, 15, 1, 0], 5: [0]}
2023-12-09 13:43:29 +00:00
def test_check_armstrong_1(self):
2023-12-25 21:24:01 +00:00
assert check_armstrong(n=156) == False
2023-12-09 13:43:29 +00:00
2023-12-25 21:24:01 +00:00
# distances_true = {1: [2], 2: [1], 3: [0]}
# distances_false = {1: [0], 2: [0], 3: [149]}
2023-12-09 13:43:29 +00:00
def test_check_armstrong_2(self):
2023-12-25 21:24:01 +00:00
assert check_armstrong(n=2) == False
2023-12-09 13:43:29 +00:00
2023-12-25 21:24:01 +00:00
# distances_true = {1: [1], 2: [0]}
# distances_false = {1: [0], 2: [1]}
2023-12-09 13:43:29 +00:00
def test_check_armstrong_3(self):
2023-12-25 21:24:01 +00:00
assert check_armstrong(n=1) == True
2023-12-09 13:43:29 +00:00
# distances_true = {1: [153], 2: [152], 3: [3], 4: [0, 0, 0, 1], 5: [0]}
# distances_false = {1: [0], 2: [0], 3: [0], 4: [153, 15, 1, 0], 5: [1]}
2023-12-09 13:43:29 +00:00
def test_check_armstrong_4(self):
assert check_armstrong(n=153) == True
2023-12-25 21:24:01 +00:00
# distances_true = {1: [0]}
# distances_false = {1: [1]}
def test_check_armstrong_5(self):
2023-12-25 21:24:01 +00:00
assert check_armstrong(n=0) == True