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_anagram_check.py

20 lines
653 B
Python
Raw Normal View History

2023-12-09 13:43:29 +00:00
from unittest import TestCase
from benchmark.anagram_check import anagram_check
2023-12-09 13:43:29 +00:00
class Test_anagram_check(TestCase):
2023-12-18 14:13:31 +00:00
# distances_true = {1: [0], 2: [0]}
# distances_false = {1: [1], 2: [1]}
2023-12-20 13:19:45 +00:00
def test_anagram_check_1(self):
assert anagram_check(s1='/', s2='6') == False
2023-12-20 13:19:45 +00:00
# distances_true = {1: [1], 3: [1], 4: [0]}
# distances_false = {1: [0], 3: [0], 4: [1]}
def test_anagram_check_2(self):
assert anagram_check(s1='', s2='') == True
# distances_true = {1: [1], 3: [0]}
# distances_false = {1: [0], 3: [1]}
2023-12-09 13:43:29 +00:00
def test_anagram_check_3(self):
assert anagram_check(s1='md', s2='p') == False