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-11 14:43:53 +00:00
|
|
|
# distances_true = {1: [0]}
|
|
|
|
# distances_false = {1: [1]}
|
2023-12-09 13:43:29 +00:00
|
|
|
def test_check_armstrong_1(self):
|
2023-12-11 14:43:53 +00:00
|
|
|
assert check_armstrong(n=0) == True
|
2023-12-09 13:43:29 +00:00
|
|
|
|
2023-12-11 14:43:53 +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-11 14:43:53 +00:00
|
|
|
assert check_armstrong(n=2) == False
|
2023-12-09 13:43:29 +00:00
|
|
|
|
2023-12-11 14:43:53 +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-11 14:43:53 +00:00
|
|
|
assert check_armstrong(n=1) == True
|
2023-12-09 13:43:29 +00:00
|
|
|
|
2023-12-11 14:43:53 +00:00
|
|
|
# distances_true = {1: [150], 2: [149], 3: [0]}
|
|
|
|
# distances_false = {1: [0], 2: [0], 3: [1]}
|
2023-12-09 13:43:29 +00:00
|
|
|
def test_check_armstrong_4(self):
|
2023-12-11 14:43:53 +00:00
|
|
|
assert check_armstrong(n=150) == False
|
|
|
|
|
|
|
|
# distances_true = {1: [151], 2: [150], 3: [1], 4: [0], 5: [151]}
|
|
|
|
# distances_false = {1: [0], 2: [0], 3: [0], 4: [151], 5: [0]}
|
|
|
|
def test_check_armstrong_5(self):
|
|
|
|
assert check_armstrong(n=151) == False
|