Compare commits

..

No commits in common. "10b1cad5ecf55f69143d32b65c712b1bc2e57b10" and "567ced3feb9c00fa5eaf5bdbc0207b9d8e70e83a" have entirely different histories.

2 changed files with 0 additions and 42 deletions

View File

@ -1,15 +0,0 @@
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;
}
}

View File

@ -1,27 +0,0 @@
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);
}
}