Exemplo n.º 1
0
 @Test
 public void testDigitalCollections() {
   MassImportForm massImportForm = new MassImportForm();
   assertNotNull(massImportForm);
   List<String> fixture = new ArrayList<>();
   fixture.add("collection");
   massImportForm.setDigitalCollections(fixture);
   assertEquals(fixture, massImportForm.getDigitalCollections());
 }