package tests;

/**
 * A Date consists of the month, date, and year, which will be combined in a toString later.
 * This is a tentative depiction. 
 */
public abstract class Date {
	
	int month;
	int date;
	int year;
	
	/* Aux function used in recording test times */
	abstract boolean isValid(); 

}