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_gcd.py
2023-12-25 22:24:01 +01:00

29 lines
933 B
Python

from unittest import TestCase
from benchmark.gcd import gcd
class Test_gcd(TestCase):
# distances_true = {1: [6], 2: [3], 3: [3], 4: [4], 5: [0, 0, 0, 1]}
# distances_false = {1: [0], 2: [0], 3: [0], 4: [0], 5: [4, 3, 1, 0]}
def test_gcd_1(self):
assert gcd(a=7, b=4) == 1
# distances_true = {1: [3], 2: [5], 3: [2], 4: [0], 5: [0, 0, 1]}
# distances_false = {1: [0], 2: [0], 3: [0], 4: [2], 5: [4, 2, 0]}
def test_gcd_2(self):
assert gcd(a=4, b=6) == 2
# distances_true = {1: [1], 2: [0]}
# distances_false = {1: [0], 2: [1]}
def test_gcd_3(self):
assert gcd(a=2, b=1) == 1
# distances_true = {1: [6], 2: [6], 3: [0]}
# distances_false = {1: [0], 2: [0], 3: [1]}
def test_gcd_4(self):
assert gcd(a=7, b=7) == 7
# distances_true = {1: [0]}
# distances_false = {1: [1]}
def test_gcd_5(self):
assert gcd(a=1, b=2) == 1