Software Engineering “im WiSe18"
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TestKorndoerfer.java 220B

12345678910111213141516
  1. import org.junit.Test;
  2. import static org.junit.Assert.*;
  3. public class TestKorndoerfer {
  4. @Test
  5. public void testMulitply(){
  6. int i =2;
  7. int result =i*2;
  8. assertEquals(4, result);
  9. }
  10. }