Browse Source

testGroeßerAls

remotes/origin/H.F.F/Taschenrechner
fdai7446 2 years ago
parent
commit
4226e384f8
  1. 5
      TaschenrechnerTest.java

5
TaschenrechnerTest.java

@ -58,7 +58,12 @@ public class TaschenrechnerTest {
@Test
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

Loading…
Cancel
Save