1. Testfall

This commit is contained in:
blckxsepia 2018-11-22 15:14:33 +01:00
parent f112e10987
commit 3b1643850c

15
src/TestKorndoerfer.java Normal file
View File

@ -0,0 +1,15 @@
import org.junit.Test;
import static org.junit.Assert.*;
public class TestKorndoerfer {
@Test
public void testMulitply(){
int i =2;
int result =i*2;
assertEquals(4, result);
}
}