import java.util.Scanner;
import javax.swing.JOptionPane;

class TestStudent
{
	public static void main(String[] args)
	{

	 	System.out.println("Test of Student Class.\n");
	 	Student student1 = new Student("Matthew", 22);
	 	Student student2 = new Student("Regine", 19);
	 	Student student3 = new Student("Ryan", 18);

	 	System.out.println("student2.id is " + student2.getId());

	 	System.out.println("student2 name is: " + student2.getName());

	 	System.out.println("student2 age is: " + student2.getAge());

	 	System.out.println("student2 gpa is: " + student2.getGpa());

	 	student2.setGpa(4.0);

	 	System.out.println("student2 gpa is: " + student2.getGpa());

 	}//end of main

}//end of class