/** Method: setPath(final String path) */
 @Test
 public void testSetPath() throws Exception {
   ConfigurationFolder folder = new ConfigurationFolder("id", "name", "path");
   folder.setPath("path2");
   assertEquals(folder.getPath(), "path2");
 }