@ -11,35 +11,17 @@ public class Birthdate {
year = y;
}
public int getDay() {
return day;
public void setDay(int day) {
this.day = day;
public int getMonth() {
return month;
public void setMonth(int month) {
this.month = month;
public int getYear() {
return year;
public void setYear(int year) {
this.year = year;
/**
* @return Date Format TT.DD.YYYY
*/
public String toString() {
return day + "." + month + "." + year;
public void changeBirthdate(int d, int m, int y) {
day = d;
month = m;
@ -7,7 +7,7 @@ public class BirthdateTest extends TestCase {
* Test method for {@link de.hs_fulda.ciip.projjpn.Birthdate#toString()}.
public final void testToString() {
public void testToString() {
// Given
Birthdate b = new Birthdate(1, 1, 2000);
@ -17,5 +17,5 @@ public class BirthdateTest extends TestCase {
// Then
assertEquals(expectedDate, b.toString());