Skip to content

Commit 286d549

Browse files
committed
fixed generator service tests
1 parent c3da1f0 commit 286d549

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

modules/swagger-codegen/src/test/java/io/swagger/codegen/v3/service/GeneratorServiceTest.java

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -848,7 +848,6 @@ public void testGeneratorServiceTypescriptAngular3() {
848848
@Test
849849
public void testIssue605() throws IOException {
850850
String path = getTmpFolder().getAbsolutePath() + "/client";
851-
path = new File("/dati/dev/progetti/swagger/issue-206/client").getAbsolutePath();
852851
GenerationRequest request = new GenerationRequest();
853852
request
854853
.codegenVersion(GenerationRequest.CodegenVersion.V3)
@@ -866,7 +865,6 @@ public void testIssue605() throws IOException {
866865
Assert.assertFalse(files.isEmpty());
867866
System.out.println("Generated client in:\n" + path);
868867
path = getTmpFolder().getAbsolutePath() + "/server";
869-
path = new File("/dati/dev/progetti/swagger/issue-206/server").getAbsolutePath();
870868
request = new GenerationRequest();
871869
request
872870
.codegenVersion(GenerationRequest.CodegenVersion.V3)
@@ -887,7 +885,6 @@ public void testIssue605() throws IOException {
887885
public void testIssue612_CC27814() throws IOException {
888886

889887
String path = getTmpFolder().getAbsolutePath() + "/server";
890-
path = new File("/dati/dev/progetti/swagger/CC-27814/server").getAbsolutePath();
891888
GenerationRequest request = new GenerationRequest();
892889
request
893890
.codegenVersion(GenerationRequest.CodegenVersion.V3)
@@ -903,7 +900,6 @@ public void testIssue612_CC27814() throws IOException {
903900
System.out.println("Generated server in:\n" + path);
904901

905902
path = getTmpFolder().getAbsolutePath() + "/client";
906-
path = new File("/dati/dev/progetti/swagger/CC-27814/client").getAbsolutePath();
907903
request = new GenerationRequest();
908904
request
909905
.codegenVersion(GenerationRequest.CodegenVersion.V3)
@@ -926,7 +922,6 @@ public void testIssue612_CC27814() throws IOException {
926922
public void testIssue613_CC27916() throws IOException {
927923

928924
String path = getTmpFolder().getAbsolutePath() + "/client";
929-
path = new File("/dati/dev/progetti/swagger/CC-27986/client").getAbsolutePath();
930925
GenerationRequest request = new GenerationRequest();
931926
request
932927
.codegenVersion(GenerationRequest.CodegenVersion.V3)
@@ -942,7 +937,6 @@ public void testIssue613_CC27916() throws IOException {
942937
System.out.println("Generated client in:\n" + path);
943938

944939
path = getTmpFolder().getAbsolutePath() + "/server";
945-
path = new File("/dati/dev/progetti/swagger/CC-27986/server").getAbsolutePath();
946940
request = new GenerationRequest();
947941
request
948942
.codegenVersion(GenerationRequest.CodegenVersion.V3)
@@ -963,7 +957,6 @@ public void testIssue613_CC27916() throws IOException {
963957
public void testIssue613_605_612() throws IOException {
964958

965959
String path = getTmpFolder().getAbsolutePath() + "/client";
966-
path = new File("/dati/dev/progetti/swagger/polycodegen/client").getAbsolutePath();
967960
GenerationRequest request = new GenerationRequest();
968961
request
969962
.codegenVersion(GenerationRequest.CodegenVersion.V3)
@@ -979,7 +972,6 @@ public void testIssue613_605_612() throws IOException {
979972
System.out.println("Generated client in:\n" + path);
980973

981974
path = getTmpFolder().getAbsolutePath() + "/server";
982-
path = new File("/dati/dev/progetti/swagger/polycodegen/server").getAbsolutePath();
983975
request = new GenerationRequest();
984976
request
985977
.codegenVersion(GenerationRequest.CodegenVersion.V3)
@@ -1000,7 +992,6 @@ public void testIssue613_605_612() throws IOException {
1000992
public void testIssue613_605_612_non_resteasy() throws IOException {
1001993

1002994
String path = getTmpFolder().getAbsolutePath() + "/clientdefault";
1003-
path = new File("/dati/dev/progetti/swagger/polycodegendefault/client").getAbsolutePath();
1004995
GenerationRequest request = new GenerationRequest();
1005996
request
1006997
.codegenVersion(GenerationRequest.CodegenVersion.V3)
@@ -1016,7 +1007,6 @@ public void testIssue613_605_612_non_resteasy() throws IOException {
10161007
System.out.println("Generated client in:\n" + path);
10171008

10181009
path = getTmpFolder().getAbsolutePath() + "/server";
1019-
path = new File("/dati/dev/progetti/swagger/polycodegendefault/serverdefault").getAbsolutePath();
10201010
request = new GenerationRequest();
10211011
request
10221012
.codegenVersion(GenerationRequest.CodegenVersion.V3)

0 commit comments

Comments
 (0)