Ejemplo n.º 1
0
 @Test
 public void shouldTranslateParentMarkingClusterWithoutQuestions() throws Exception {
   Structure struct = getStructure();
   Structure struct1 = getStructure();
   struct1.setId(2l);
   struct1.setParentStructure(struct);
   Set<ScorisQig> scorisQigs = getScorisQigs(struct, struct1);
   ArrayOfMarkingCluster arrayOfMarkingCluster = translator.translate(scorisQigs);
   List<MarkingCluster> clusters = arrayOfMarkingCluster.getMarkingCluster();
   assertEquals(new Integer(2), new Integer(clusters.size()));
   for (MarkingCluster cluster : clusters) {
     assertEquals("Name", cluster.getName());
   }
 }
Ejemplo n.º 2
0
 @Test
 public void shouldTranslateMultipleParentMarkingClusterWithoutQuestions() throws Exception {
   Structure struct = getStructure();
   struct.setName("Name1");
   Structure struct2 = getStructure();
   struct2.setId(3l);
   struct2.setName("Name3");
   struct2.setOrder(3);
   struct.setParentStructure(struct2);
   Structure struct1 = getStructure();
   struct1.setId(2l);
   struct1.setName("Name2");
   struct1.setOrder(2);
   struct1.setParentStructure(struct);
   Set<ScorisQig> scorisQigs = getScorisQigs(struct, struct1, struct2);
   ArrayOfMarkingCluster arrayOfMarkingCluster = translator.translate(scorisQigs);
   List<MarkingCluster> clusters = arrayOfMarkingCluster.getMarkingCluster();
   assertEquals(new Integer(3), new Integer(clusters.size()));
   int sequence = 1;
   for (MarkingCluster cluster : clusters) {
     assertEquals("Name" + sequence, cluster.getName());
     assertEquals(sequence++, cluster.getSequence());
   }
 }