Merge remote-tracking branch 'origin/master'

This commit is contained in:
Danial Eshete 2018-12-20 14:54:36 +01:00
commit 4e82a07929
2 changed files with 42 additions and 0 deletions

15
src/Beduerftiger.java Normal file
View File

@ -0,0 +1,15 @@
public class Beduerftiger {
public String bFirstName;
public String bLastName;
public String bNeed;
public Beduerftiger(){
}
public Beduerftiger(String theFirstName, String theLastName, String theNeed ){
this.bFirstName = theFirstName;
this.bLastName = theLastName;
this.bNeed = theNeed;
}
}

27
src/TestBeduerftiger.java Normal file
View File

@ -0,0 +1,27 @@
import org.junit.Test;
import static org.junit.Assert.*;
public class TestBeduerftiger {
@Test
public void firstNameChange(){
String bfirstName= "Jesus";
String result ="Jesus";
assertEquals(bfirstName, result);
}
@Test
public void lastNameChange(){
String bLastName= "Gottessohn";
String result ="Gottessohn";
assertEquals(bLastName, result);
}
@Test
public void NeedChange(){
String bNeed= "Abendmahl";
String result ="Abendmahl";
assertEquals(bNeed, result);
}
}