Compare commits

...

2 Commits

Author SHA1 Message Date
blckxsepia
10b1cad5ec Merge branch 'master' of https://git.efi.th-nuernberg.de/gitea/korndoerferpi67188/ChareSWE 2018-12-20 14:48:26 +01:00
blckxsepia
f064d3835e Beduerftiger Class erstellt 2018-12-20 14:48:09 +01:00
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);
}
}