from unittest import TestCase from benchmark.exponentiation import exponentiation class Test_exponentiation(TestCase): # distances_true = {1: [0, 0, 0, 0, 0, 0, 0, 0, 0, 1], 3: [0], 2: [0, 1, 1, 1, 1, 1, 0, 0, 1]} # distances_false = {1: [773, 386, 192, 95, 47, 23, 11, 5, 2, 0], 3: [1], 2: [1, 0, 0, 0, 0, 0, 1, 1, 0]} def test_exponentiation_1(self): assert exponentiation(baseNumber=-1, power=774) == 1