From 64683ab2f0bc72d61c3edec9d67ff4222a5f9775 Mon Sep 17 00:00:00 2001 From: jan-vcapgemini <59438728+jan-vcapgemini@users.noreply.github.com> Date: Fri, 31 Mar 2023 14:36:54 +0200 Subject: [PATCH] adjusted javadocs added issues to TODOs --- .../upgrade/TemplateSetUpgraderTest.java | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/cobigen/cobigen-core/src/test/java/com/devonfw/cobigen/unittest/config/upgrade/TemplateSetUpgraderTest.java b/cobigen/cobigen-core/src/test/java/com/devonfw/cobigen/unittest/config/upgrade/TemplateSetUpgraderTest.java index 33546c57c0..d97920a353 100644 --- a/cobigen/cobigen-core/src/test/java/com/devonfw/cobigen/unittest/config/upgrade/TemplateSetUpgraderTest.java +++ b/cobigen/cobigen-core/src/test/java/com/devonfw/cobigen/unittest/config/upgrade/TemplateSetUpgraderTest.java @@ -40,7 +40,6 @@ /** * Test suite for {@link TemplateSetUpgrader} */ - public class TemplateSetUpgraderTest extends AbstractUnitTest { /** Root path to all resources used in this test case */ @@ -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 @@ -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()); @@ -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 { @@ -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()); @@ -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 { @@ -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());