|
|
@ -0,0 +1,30 @@ |
|
|
|
package hs.fulda.de.ci.exam.project; |
|
|
|
|
|
|
|
import org.junit.jupiter.api.Test; |
|
|
|
|
|
|
|
import static org.assertj.core.api.Assertions.assertThat; |
|
|
|
|
|
|
|
public class PersonTest { |
|
|
|
Address address1 = new Address("Fuldaer str", "Fulda", "Hessen", "36037", "Germany"); |
|
|
|
Person person1 = new Person("Max Mustermann", address1, "max.mustermann@gmail.com", "015147890206"); |
|
|
|
|
|
|
|
@Test |
|
|
|
void test_getName() { |
|
|
|
assertThat(person1.getName()).describedAs("get person name").isEqualTo("Max Mustermann"); |
|
|
|
} |
|
|
|
|
|
|
|
@Test |
|
|
|
void test_getAddress() { |
|
|
|
assertThat(person1.getAddress()).describedAs("get address of person").isEqualTo(address1); |
|
|
|
} |
|
|
|
|
|
|
|
@Test |
|
|
|
void test_getEmail() { |
|
|
|
assertThat(person1.getEmail()).describedAs("get person email").isEqualTo("max.mustermann@gmail.com"); |
|
|
|
} |
|
|
|
@Test |
|
|
|
void test_getPhone() { |
|
|
|
assertThat(person1.getPhone()).describedAs("get person phone").isEqualTo("015147890206"); |
|
|
|
} |
|
|
|
|
|
|
|
} |