from unittest import TestCase from benchmark.anagram_check import anagram_check class Test_anagram_check(TestCase): # distances_true = {1: [0], 2: [0]} # distances_false = {1: [1], 2: [1]} def test_anagram_check_1(self): assert anagram_check(s1='2', s2='K') == False # distances_true = {1: [1], 3: [0]} # distances_false = {1: [0], 3: [1]} def test_anagram_check_2(self): assert anagram_check(s1='NW', s2='^') == False # distances_true = {1: [2], 3: [1], 4: [3]} # distances_false = {1: [0], 3: [0], 4: [0]} def test_anagram_check_3(self): assert anagram_check(s1='I@N', s2='}*9') == False