Advertisement
piffy

Dreieck JUnit Test 1

Jun 8th, 2015
388
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.26 KB | None | 0 0
  1. @Test
  2.     public void testIsDreieck() {
  3.         System.out.println("isDreieck");
  4.         Dreieck instance = new Dreieck(2,3,4);
  5.         boolean expResult = true;
  6.         boolean result = instance.isDreieck();
  7.         assertEquals(expResult, result);
  8.  
  9.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement