Browse Source

testMultiplikation

remotes/origin/fdai7487-main-patch-56841
fdai7446 2 years ago
parent
commit
5f35b8a751
  1. 5
      TaschenrechnerTest.java

5
TaschenrechnerTest.java

@ -18,7 +18,12 @@ public class TaschenrechnerTest {
@Test @Test
public void testMultiplikation() { public void testMultiplikation() {
int a = 6;
int b = 6;
int ab = a * b;
int result = Taschenrechner.multiplikation(a, b);
assertEquals(ab, result);
} }
@Test @Test

Loading…
Cancel
Save