Skip to content

Commit

Permalink
want to avoid useless imports #103
Browse files Browse the repository at this point in the history
  • Loading branch information
fugerit79 committed Nov 22, 2024
1 parent c72ae45 commit 7913ba4
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ private int testDaoGenerationWorker( File baseDir, Properties overrideProperties
}

@Test
public void testDaoGenerationJdk17SpringBoot() throws IOException, ConfigException {
public void testDaoGenerationJdk17SpringBoot() {
File file = new File( "target/daogen-run-jdk17-sprint-boot" );
Properties overrideProperties = new Properties();
overrideProperties.setProperty(
Expand All @@ -58,7 +58,7 @@ public void testDaoGenerationJdk17SpringBoot() throws IOException, ConfigExcepti
}

@Test
public void testDaoGenerationClassicalEntity() throws IOException, ConfigException {
public void testDaoGenerationClassicalEntity() {
File file = new File( "target/daogen-run-classical-entity" );
Properties overrideProperties = new Properties();
overrideProperties.setProperty(
Expand All @@ -82,7 +82,7 @@ public void testDaoGenerationClassicalEntity() throws IOException, ConfigExcepti
}

@Test
public void testDaoModelAndHelperInTheSameFolder() throws IOException, ConfigException {
public void testDaoModelAndHelperInTheSameFolder() {
File file = new File( "target/daogen-run-model-helper-coexists" );
Properties overrideProperties = new Properties();
overrideProperties.setProperty(
Expand All @@ -94,7 +94,7 @@ public void testDaoModelAndHelperInTheSameFolder() throws IOException, ConfigExc
}

@Test
public void testDaoGenerationFailHelperNg() throws IOException, ConfigException {
public void testDaoGenerationFailHelperNg() {
File file = new File( "target/daogen-run-fail-helper-ng" );
Properties overrideProperties = new Properties();
overrideProperties.setProperty(
Expand All @@ -104,7 +104,7 @@ public void testDaoGenerationFailHelperNg() throws IOException, ConfigException
}

@Test
public void testDaoGenerationFailWrapperNg() throws IOException, ConfigException {
public void testDaoGenerationFailWrapperNg() {
File file = new File( "target/daogen-run-fail-wrapper-ng" );
Properties overrideProperties = new Properties();
overrideProperties.setProperty(
Expand All @@ -114,7 +114,7 @@ public void testDaoGenerationFailWrapperNg() throws IOException, ConfigException
}

@Test
public void testDaoGenerationFailFinderNg() throws IOException, ConfigException {
public void testDaoGenerationFailFinderNg() {
File file = new File( "target/daogen-run-fail-finder-ng" );
Properties overrideProperties = new Properties();
overrideProperties.setProperty(
Expand All @@ -124,7 +124,7 @@ public void testDaoGenerationFailFinderNg() throws IOException, ConfigException
}

@Test
public void testDaoGenerationDefault() throws IOException, ConfigException {
public void testDaoGenerationDefault() throws IOException, ConfigException {
File file = new File( "target/daogen-run" );
try ( FileInputStream fis = new FileInputStream( new File( "src/test/resources/sample/daogenruntest-sample-daogen-config.xml" ) ) ) {
log.info( "DAOGEN start!" );
Expand Down

0 comments on commit 7913ba4

Please sign in to comment.