Browse Source

testGleich

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

5
TaschenrechnerTest.java

@ -68,7 +68,12 @@ public class TaschenrechnerTest {
@Test @Test
public void testGleich() { public void testGleich() {
int a = 5;
int b = 5;
boolean ab = a==b;
boolean result = Taschenrechner.gleich(a, b);
assertEquals(ab, result);
} }
@Test @Test

Loading…
Cancel
Save