@@ -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; | |||
} | |||
} |
@@ -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); | |||
} | |||
} |