/*
 * file: SRTest11:java
 * Class tests the StudentRecord class.
 * Student numbers and surnames same.
 * no marks. No merge.
 */

public class SRTest11 {

   public static void main(String[] args) {
   
      StudentRecord oneStudent = new StudentRecord("Smith", "Rob",
"990223900");
      StudentRecord anotherStudent = new StudentRecord("Smith", "Bob",
"990223900");
   
      System.out.println(oneStudent);
      System.out.println(anotherStudent);

      if (oneStudent.sameStudent(anotherStudent)) {
   
         System.out.println("Same");      
      //   System.out.println(oneStudent.mergeRecords(anotherStudent));
      }
      else
      
         System.out.println("Different");
   }
}

