Browse Source

testGroeßerAls

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

5
TaschenrechnerTest.java

@ -58,7 +58,12 @@ public class TaschenrechnerTest {
@Test @Test
public void testGroeßerAls() { public void testGroeßerAls() {
int a = 6;
int b = 9;
boolean ab = a>b;
boolean result = Taschenrechner.groeßerAls(a, b);
assertEquals(ab, result);
} }
@Test @Test

Loading…
Cancel
Save