Skip to content
Snippets Groups Projects
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
CellParseTestCase.java 357 B
package smash.appointment.parse;

class CellParseTestCase {
	String						query;
	Subject						subject;
	String						time;
	AppointmentType[]	types;

	public CellParseTestCase(String query, Subject subject, String time, AppointmentType[] types) {
		this.query = query;
		this.subject = subject;
		this.time = time;
		this.types = types;
	}
};