Software Engineering “im WiSe18"
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TestBeduerftiger.java 579B

123456789101112131415161718192021222324252627
  1. import org.junit.Test;
  2. import static org.junit.Assert.*;
  3. public class TestBeduerftiger {
  4. @Test
  5. public void firstNameChange(){
  6. String bfirstName= "Jesus";
  7. String result ="Jesus";
  8. assertEquals(bfirstName, result);
  9. }
  10. @Test
  11. public void lastNameChange(){
  12. String bLastName= "Gottessohn";
  13. String result ="Gottessohn";
  14. assertEquals(bLastName, result);
  15. }
  16. @Test
  17. public void NeedChange(){
  18. String bNeed= "Abendmahl";
  19. String result ="Abendmahl";
  20. assertEquals(bNeed, result);
  21. }
  22. }