/** Method: setId(final String id) */
 @Test
 public void testSetId() throws Exception {
   ConfigurationFolder folder = new ConfigurationFolder("id", "name", "path");
   folder.setId("id2");
   assertEquals(folder.getId(), "id2");
 }