File tree Expand file tree Collapse file tree
modules/openapi-generator/src/test/java/org/openapitools/codegen/java Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3718,13 +3718,9 @@ public void givenOneOfUsesInterfacesAndLibraryNotJacksonWhenGenerateThenOneOfInt
37183718 ClientOptInput clientOptInput = configurator .toClientOptInput ();
37193719 generator .opts (clientOptInput )
37203720 .generate ();
3721- //TODO Delete
3722- System .out .println ("Generator Settings: " + clientOptInput .getGeneratorSettings ());
37233721 String outputPath = output .getAbsolutePath () + "/src/main/java/org/openapitools" ;
37243722 File testModel = new File (outputPath , "/client/model/Fruit.java" );
37253723 String fileContent = Files .readString (testModel .toPath ());
3726- //TODO Delete
3727- System .out .println (fileContent );
37283724 TestUtils .assertValidJavaSourceCode (fileContent );
37293725 TestUtils .assertFileNotContains (testModel .toPath (), "com.fasterxml.jackson" );
37303726 }
You can’t perform that action at this time.
0 commit comments