Skip to content

Commit

Permalink
adjusted javadocs
Browse files Browse the repository at this point in the history
added issues to TODOs
  • Loading branch information
jan-vcapgemini authored Mar 31, 2023
1 parent f163973 commit 64683ab
Showing 1 changed file with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,6 @@
/**
* Test suite for {@link TemplateSetUpgrader}
*/

public class TemplateSetUpgraderTest extends AbstractUnitTest {

/** Root path to all resources used in this test case */
Expand All @@ -53,6 +52,7 @@ public class TemplateSetUpgraderTest extends AbstractUnitTest {
@Rule
public TemporaryFolder tempFolder = new TemporaryFolder();

/** Path to the CobiGen home folder */
private Path currentHome;

@Before
Expand All @@ -65,10 +65,10 @@ public void prepare() throws IOException {
/**
* Test the correct folder creation
*
* @throws Exception
* @throws Exception test fails
*/
@Test
@Ignore
@Ignore // TODO: re-enable when upgrader was implemented, see: https://github.com/devonfw/cobigen/issues/1595
public void testTemplateSetUpgrade() throws Exception {

FileUtils.copyDirectory(new File(testFileRootPath + "valid-2.1"), this.currentHome.toFile());
Expand All @@ -92,7 +92,7 @@ public void testTemplateSetUpgrade() throws Exception {
/**
* Test the correct folder creation
*
* @throws Exception
* @throws Exception test fails
*/
@Test
public void testTemplateSetUpgradeWithoutTemplatesFolder() throws Exception {
Expand All @@ -116,10 +116,10 @@ public void testTemplateSetUpgradeWithoutTemplatesFolder() throws Exception {
/**
* Tests if the Template files have been correctly copied into both the new template set and the backup folder
*
* @throws Exception
* @throws Exception test fails
*/
@Test
@Ignore
@Ignore // TODO: re-enable when upgrader was implemented, see: https://github.com/devonfw/cobigen/issues/1595
public void testTemplateSetUpgradeCopyOfTemplates() throws Exception {

FileUtils.copyDirectory(new File(testFileRootPath + "valid-2.1"), this.currentHome.toFile());
Expand Down Expand Up @@ -169,7 +169,7 @@ public void testTemplateSetUpgradeCopyOfTemplates() throws Exception {
* @throws SAXException if a fatal error is found.
* @throws IOException if the underlying reader throws an IOException.
*/
@Ignore
@Ignore // TODO: re-enable when upgrader was implemented, see: https://github.com/devonfw/cobigen/issues/1595
private void validateContextConfigurationFile(Path contextpath, String schemaVersion)
throws SAXException, IOException {

Expand All @@ -196,10 +196,10 @@ private void validateContextConfigurationFile(Path contextpath, String schemaVer
* Tests if the context.xml has been created in the correct location and that it was correctly created as a v3.0
* schema
*
* @throws Exception
* @throws Exception test fails
*/
@Test
@Ignore
@Ignore // TODO: re-enable when upgrader was implemented, see: https://github.com/devonfw/cobigen/issues/1595
public void testTemplateSetUpgradeContextSplit() throws Exception {

FileUtils.copyDirectory(new File(testFileRootPath + "valid-2.1"), this.currentHome.toFile());
Expand Down

0 comments on commit 64683ab

Please sign in to comment.