comparison src/test/java/jp/ac/u_ryukyu/cr/ie/tatsuki/functionTest/PersonIdsTest.java @ 11:67305f53aad0

change fj List to LinkedList
author one
date Sat, 25 Oct 2014 17:10:03 +0900
parents 378bfec11a8d
children f93d15042315
comparison
equal deleted inserted replaced
10:ccb74917f06a 11:67305f53aad0
16 16
17 JuGrix jugrix = new JuGrix(); 17 JuGrix jugrix = new JuGrix();
18 Iterator<String> ids = jugrix.personIds("o:2"); 18 Iterator<String> ids = jugrix.personIds("o:2");
19 19
20 ids.hasNext(); 20 ids.hasNext();
21 Assert.assertEquals(ids.next(),"p:1");
22 ids.hasNext();
21 Assert.assertEquals(ids.next(),"p:45"); 23 Assert.assertEquals(ids.next(),"p:45");
22 ids.hasNext();
23 Assert.assertEquals(ids.next(),"p:1");
24 24
25 } 25 }
26 } 26 }