@ -38,7 +38,12 @@ public class TaschenrechnerTest {
@Test
public void testPotenzieren() {
int a = 2;
int b = 3;
int ab = (int)Math.pow(a, b);
int result = Taschenrechner.potenzieren(a, b);
assertEquals(ab, result);
}