from unittest import TestCase from benchmark.anagram_check import anagram_check class Test_anagram_check(TestCase): # distances_true = {1: [8], 3: [0]} # distances_false = {1: [0], 3: [7]} def test_anagram_check_1(self): assert anagram_check(s1='gU(@sp?!<', s2='^$') == False # distances_true = {1: [2], 3: [1], 4: [3]} # distances_false = {1: [0], 3: [0], 4: [0]} def test_anagram_check_2(self): assert anagram_check(s1='N9)', s2='%;r') == False # distances_true = {1: [0], 2: [0]} # distances_false = {1: [1], 2: [1]} def test_anagram_check_3(self): assert anagram_check(s1='j', s2='7') == False # distances_true = {1: [0], 2: [2], 3: [0]} # distances_false = {1: [1], 2: [0], 3: [2]} def test_anagram_check_4(self): assert anagram_check(s1='i', s2='E y') == False