Eckley in my experience of modding on skyrim i can tell you this about people on the internet, either they never read instructions or they have serious short term memory problems....
Edit: and this is a sample of what i've been doing instead of ORAS for the past hour
@Test
public void test1() {
Calendar c1 = Calendar.getInstance();
PatientExtended p1 = new PatientExtended("p1", "01/05/90", "M", c1);
p1.setLastSeen(c1);
ArrayList<PatientExtended> a = new ArrayList<PatientExtended> ();
a.add(p1);
ArrayList<PatientExtended> result = Ex1Main.seen(a);
ArrayList<PatientExtended> expected = new ArrayList<PatientExtended> ();
assertEquals(result, expected);
}
Edit: and this is a sample of what i've been doing instead of ORAS for the past hour
@Test
public void test1() {
Calendar c1 = Calendar.getInstance();
PatientExtended p1 = new PatientExtended("p1", "01/05/90", "M", c1);
p1.setLastSeen(c1);
ArrayList<PatientExtended> a = new ArrayList<PatientExtended> ();
a.add(p1);
ArrayList<PatientExtended> result = Ex1Main.seen(a);
ArrayList<PatientExtended> expected = new ArrayList<PatientExtended> ();
assertEquals(result, expected);
}