diff --git a/modules/openapi-generator/src/main/resources/Java/libraries/rest-assured/api_test.mustache b/modules/openapi-generator/src/main/resources/Java/libraries/rest-assured/api_test.mustache
index d63c511a90c..d7d9dae2bff 100644
--- a/modules/openapi-generator/src/main/resources/Java/libraries/rest-assured/api_test.mustache
+++ b/modules/openapi-generator/src/main/resources/Java/libraries/rest-assured/api_test.mustache
@@ -8,9 +8,9 @@ import {{invokerPackage}}.ApiClient;
import {{apiPackage}}.{{classname}};
import io.restassured.builder.RequestSpecBuilder;
import io.restassured.filter.log.ErrorLoggingFilter;
-import org.junit.Before;
-import org.junit.Test;
-import org.junit.Ignore;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
import java.time.LocalDate;
import java.time.OffsetDateTime;
@@ -31,12 +31,12 @@ import static {{invokerPackage}}.{{#gson}}GsonObjectMapper.gson{{/gson}}{{#jacks
/**
* API tests for {{classname}}
*/
-@Ignore
+@Disabled
public class {{classname}}Test {
private {{classname}} api;
- @Before
+ @BeforeEach
public void createApi() {
api = ApiClient.api(ApiClient.Config.apiConfig().reqSpecSupplier(
() -> new RequestSpecBuilder()
diff --git a/modules/openapi-generator/src/main/resources/Java/libraries/rest-assured/build.gradle.mustache b/modules/openapi-generator/src/main/resources/Java/libraries/rest-assured/build.gradle.mustache
index 0bcd3806466..3ddee453519 100644
--- a/modules/openapi-generator/src/main/resources/Java/libraries/rest-assured/build.gradle.mustache
+++ b/modules/openapi-generator/src/main/resources/Java/libraries/rest-assured/build.gradle.mustache
@@ -104,14 +104,13 @@ ext {
swagger_annotations_version = "2.2.15"
{{/swagger2AnnotationLibrary}}
rest_assured_version = "5.3.2"
- junit_version = "4.13.2"
+ junit_version = "5.10.3"
{{#jackson}}
jackson_version = "2.17.1"
jackson_databind_version = "2.17.1"
{{#openApiNullable}}
jackson_databind_nullable_version = "0.2.6"
{{/openApiNullable}}
- jakarta_annotation_version = "1.3.5"
{{/jackson}}
{{#gson}}
gson_version = "2.10.1"
@@ -121,6 +120,7 @@ ext {
jodatime_version = "2.10.5"
{{/joda}}
okio_version = "3.6.0"
+ jakarta_annotation_version = "1.3.5"
}
dependencies {
@@ -163,5 +163,5 @@ dependencies {
implementation "org.hibernate:hibernate-validator:6.0.19.Final"
{{/performBeanValidation}}
implementation "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version"
- testImplementation "junit:junit:$junit_version"
+ testImplementation "org.junit.jupiter:junit-jupiter-api:$junit_version"
}
diff --git a/modules/openapi-generator/src/main/resources/Java/libraries/rest-assured/build.sbt.mustache b/modules/openapi-generator/src/main/resources/Java/libraries/rest-assured/build.sbt.mustache
index 3476f0659da..ce4037ac501 100644
--- a/modules/openapi-generator/src/main/resources/Java/libraries/rest-assured/build.sbt.mustache
+++ b/modules/openapi-generator/src/main/resources/Java/libraries/rest-assured/build.sbt.mustache
@@ -43,7 +43,7 @@ lazy val root = (project in file(".")).
"org.hibernate" % "hibernate-validator" % "6.0.19.Final" % "compile",
{{/performBeanValidation}}
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
- "junit" % "junit" % "4.13.2" % "test",
+ "org.junit.jupiter" % "junit-jupiter-api" % "5.10.3" % "test",
"com.novocode" % "junit-interface" % "0.10" % "test"
)
)
diff --git a/modules/openapi-generator/src/main/resources/Java/libraries/rest-assured/pom.mustache b/modules/openapi-generator/src/main/resources/Java/libraries/rest-assured/pom.mustache
index 3523ed4fc8d..396dd69c20b 100644
--- a/modules/openapi-generator/src/main/resources/Java/libraries/rest-assured/pom.mustache
+++ b/modules/openapi-generator/src/main/resources/Java/libraries/rest-assured/pom.mustache
@@ -331,8 +331,8 @@
{{/performBeanValidation}}
- junit
- junit
+ org.junit.jupiter
+ junit-jupiter-api
${junit-version}
test
@@ -366,6 +366,6 @@
3.0.2
{{/useBeanValidation}}
3.6.0
- 4.13.2
+ 5.10.3
diff --git a/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/api_test.mustache b/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/api_test.mustache
index 9227bbb78b0..dab62f328cb 100644
--- a/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/api_test.mustache
+++ b/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/api_test.mustache
@@ -3,8 +3,9 @@ package {{package}};
import {{invokerPackage}}.ApiClient;
{{#imports}}import {{import}};
{{/imports}}
-import org.junit.Before;
-import org.junit.Test;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
import java.time.LocalDate;
import java.time.OffsetDateTime;
@@ -25,7 +26,7 @@ public class {{classname}}Test {
private {{classname}} api;
- @Before
+ @BeforeEach
public void setup() {
api = new ApiClient().createService({{classname}}.class);
}
diff --git a/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/build.gradle.mustache b/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/build.gradle.mustache
index fdd5705c57b..96a0a66ca1e 100644
--- a/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/build.gradle.mustache
+++ b/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/build.gradle.mustache
@@ -112,7 +112,7 @@ ext {
{{/usePlayWS}}
jakarta_annotation_version = "1.3.5"
swagger_annotations_version = "1.5.22"
- junit_version = "4.13.2"
+ junit_version = "5.10.3"
{{#useRxJava2}}
rx_java_version = "2.1.1"
{{/useRxJava2}}
@@ -162,5 +162,5 @@ dependencies {
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version"
{{/jackson}}
implementation "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version"
- testImplementation "junit:junit:$junit_version"
+ testImplementation "org.junit.jupiter:junit-jupiter-api:$junit_version"
}
diff --git a/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/build.sbt.mustache b/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/build.sbt.mustache
index 5de5032a930..7e7f69093ba 100644
--- a/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/build.sbt.mustache
+++ b/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/build.sbt.mustache
@@ -37,7 +37,7 @@ lazy val root = (project in file(".")).
{{/joda}}
"io.gsonfire" % "gson-fire" % "1.9.0" % "compile",
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
- "junit" % "junit" % "4.13.2" % "test",
+ "org.junit.jupiter" % "junit-jupiter-api" % "5.10.3" % "test",
"com.novocode" % "junit-interface" % "0.11" % "test"
)
)
diff --git a/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/pom.mustache b/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/pom.mustache
index 8336f99ffdb..a365e18f29a 100644
--- a/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/pom.mustache
+++ b/modules/openapi-generator/src/main/resources/Java/libraries/retrofit2/pom.mustache
@@ -367,8 +367,8 @@
- junit
- junit
+ org.junit.jupiter
+ junit-jupiter-api
${junit-version}
test
@@ -413,6 +413,6 @@
3.0.2
{{/useBeanValidation}}
1.0.1
- 4.13.2
+ 5.10.3
diff --git a/modules/openapi-generator/src/main/resources/Java/libraries/vertx/api_test.mustache b/modules/openapi-generator/src/main/resources/Java/libraries/vertx/api_test.mustache
index df1c211856e..1469d11fb76 100644
--- a/modules/openapi-generator/src/main/resources/Java/libraries/vertx/api_test.mustache
+++ b/modules/openapi-generator/src/main/resources/Java/libraries/vertx/api_test.mustache
@@ -6,11 +6,10 @@ package {{package}};
import {{invokerPackage}}.Configuration;
-import org.junit.Test;
-import org.junit.Ignore;
-import org.junit.BeforeClass;
-import org.junit.Rule;
-import org.junit.runner.RunWith;
+import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
@@ -31,24 +30,18 @@ import java.util.Map;
/**
* API tests for {{classname}}
*/
-@RunWith(VertxUnitRunner.class)
-@Ignore
+@Disabled
public class {{classname}}Test {
private {{classname}} api;
- @Rule
- public RunTestOnContext rule = new RunTestOnContext();
-
- @BeforeClass
+ @BeforeAll
public void setupApiClient() {
- JsonObject config = new JsonObject();
- Vertx vertx = rule.vertx();
- Configuration.setupDefaultApiClient(vertx, config);
-
api = new {{classname}}Impl();
}
- {{#operations}}{{#operation}}
+
+ {{#operations}}
+ {{#operation}}
/**
* {{summary}}
* {{notes}}
@@ -66,5 +59,6 @@ public class {{classname}}Test {
async.complete();
});
}
- {{/operation}}{{/operations}}
+ {{/operation}}
+ {{/operations}}
}
diff --git a/modules/openapi-generator/src/main/resources/Java/libraries/vertx/build.gradle.mustache b/modules/openapi-generator/src/main/resources/Java/libraries/vertx/build.gradle.mustache
index 353a8a46eac..0e8fd590ce5 100644
--- a/modules/openapi-generator/src/main/resources/Java/libraries/vertx/build.gradle.mustache
+++ b/modules/openapi-generator/src/main/resources/Java/libraries/vertx/build.gradle.mustache
@@ -33,7 +33,7 @@ ext {
jackson_version = "2.17.1"
jackson_databind_version = "2.17.1"
vertx_version = "3.5.2"
- junit_version = "4.13.2"
+ junit_version = "5.10.3"
{{#openApiNullable}}
jackson_databind_nullable_version = "0.2.6"
{{/openApiNullable}}
@@ -56,6 +56,6 @@ dependencies {
implementation "org.openapitools:jackson-databind-nullable:$jackson_databind_nullable_version"
{{/openApiNullable}}
implementation "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version"
- testImplementation "junit:junit:$junit_version"
+ testImplementation "org.junit.jupiter:junit-jupiter-api:$junit_version"
testImplementation "io.vertx:vertx-unit:$vertx_version"
}
diff --git a/modules/openapi-generator/src/main/resources/Java/libraries/vertx/pom.mustache b/modules/openapi-generator/src/main/resources/Java/libraries/vertx/pom.mustache
index fc22b0a4399..b9b44cd85df 100644
--- a/modules/openapi-generator/src/main/resources/Java/libraries/vertx/pom.mustache
+++ b/modules/openapi-generator/src/main/resources/Java/libraries/vertx/pom.mustache
@@ -284,8 +284,8 @@
- junit
- junit
+ org.junit.jupiter
+ junit-jupiter-api
${junit-version}
test
@@ -315,6 +315,6 @@
{{^useJakartaEe}}
1.3.5
{{/useJakartaEe}}
- 4.13.2
+ 5.10.3
diff --git a/samples/client/petstore/java/rest-assured-jackson/build.gradle b/samples/client/petstore/java/rest-assured-jackson/build.gradle
index e68a5e0a9a2..3d35d7ba46b 100644
--- a/samples/client/petstore/java/rest-assured-jackson/build.gradle
+++ b/samples/client/petstore/java/rest-assured-jackson/build.gradle
@@ -98,12 +98,12 @@ if(hasProperty('target') && target == 'android') {
ext {
rest_assured_version = "5.3.2"
- junit_version = "4.13.2"
+ junit_version = "5.10.3"
jackson_version = "2.17.1"
jackson_databind_version = "2.17.1"
jackson_databind_nullable_version = "0.2.6"
- jakarta_annotation_version = "1.3.5"
okio_version = "3.6.0"
+ jakarta_annotation_version = "1.3.5"
}
dependencies {
@@ -119,5 +119,5 @@ dependencies {
implementation "jakarta.validation:jakarta.validation-api:3.0.2"
implementation "org.hibernate:hibernate-validator:6.0.19.Final"
implementation "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version"
- testImplementation "junit:junit:$junit_version"
+ testImplementation "org.junit.jupiter:junit-jupiter-api:$junit_version"
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/build.sbt b/samples/client/petstore/java/rest-assured-jackson/build.sbt
index e080650b9ef..58b7d967ddc 100644
--- a/samples/client/petstore/java/rest-assured-jackson/build.sbt
+++ b/samples/client/petstore/java/rest-assured-jackson/build.sbt
@@ -22,7 +22,7 @@ lazy val root = (project in file(".")).
"jakarta.validation" % "jakarta.validation-api" % "3.0.2" % "compile",
"org.hibernate" % "hibernate-validator" % "6.0.19.Final" % "compile",
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
- "junit" % "junit" % "4.13.2" % "test",
+ "org.junit.jupiter" % "junit-jupiter-api" % "5.10.3" % "test",
"com.novocode" % "junit-interface" % "0.10" % "test"
)
)
diff --git a/samples/client/petstore/java/rest-assured-jackson/pom.xml b/samples/client/petstore/java/rest-assured-jackson/pom.xml
index 8456b100c80..9023c63de60 100644
--- a/samples/client/petstore/java/rest-assured-jackson/pom.xml
+++ b/samples/client/petstore/java/rest-assured-jackson/pom.xml
@@ -269,8 +269,8 @@
- junit
- junit
+ org.junit.jupiter
+ junit-jupiter-api
${junit-version}
test
@@ -286,6 +286,6 @@
1.3.5
3.0.2
3.6.0
- 4.13.2
+ 5.10.3
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java
index d1efa43a308..93441f6ab51 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java
@@ -14,18 +14,25 @@
package org.openapitools.client.api;
import org.openapitools.client.model.Client;
+import java.util.UUID;
import org.openapitools.client.ApiClient;
import org.openapitools.client.api.AnotherFakeApi;
import io.restassured.builder.RequestSpecBuilder;
import io.restassured.filter.log.ErrorLoggingFilter;
-import org.junit.Before;
-import org.junit.Test;
-import org.junit.Ignore;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
+
+import jakarta.validation.constraints.*;
+import jakarta.validation.Valid;
+
import static io.restassured.config.ObjectMapperConfig.objectMapperConfig;
import static io.restassured.config.RestAssuredConfig.config;
import static org.openapitools.client.JacksonObjectMapper.jackson;
@@ -33,12 +40,12 @@ import static org.openapitools.client.JacksonObjectMapper.jackson;
/**
* API tests for AnotherFakeApi
*/
-@Ignore
+@Disabled
public class AnotherFakeApiTest {
private AnotherFakeApi api;
- @Before
+ @BeforeEach
public void createApi() {
api = ApiClient.api(ApiClient.Config.apiConfig().reqSpecSupplier(
() -> new RequestSpecBuilder()
@@ -52,10 +59,12 @@ public class AnotherFakeApiTest {
*/
@Test
public void shouldSee200AfterCall123testSpecialTags() {
+ String uuidTest = null;
Client body = null;
api.call123testSpecialTags()
+ .uuidTestHeader(uuidTest)
.body(body).execute(r -> r.prettyPeek());
// TODO: test validations
}
-}
\ No newline at end of file
+}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/FakeApiTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/FakeApiTest.java
index 183de79127e..b2db6700588 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/FakeApiTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/FakeApiTest.java
@@ -26,14 +26,20 @@ import org.openapitools.client.ApiClient;
import org.openapitools.client.api.FakeApi;
import io.restassured.builder.RequestSpecBuilder;
import io.restassured.filter.log.ErrorLoggingFilter;
-import org.junit.Before;
-import org.junit.Test;
-import org.junit.Ignore;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
+
+import jakarta.validation.constraints.*;
+import jakarta.validation.Valid;
+
import static io.restassured.config.ObjectMapperConfig.objectMapperConfig;
import static io.restassured.config.RestAssuredConfig.config;
import static org.openapitools.client.JacksonObjectMapper.jackson;
@@ -41,12 +47,12 @@ import static org.openapitools.client.JacksonObjectMapper.jackson;
/**
* API tests for FakeApi
*/
-@Ignore
+@Disabled
public class FakeApiTest {
private FakeApi api;
- @Before
+ @BeforeEach
public void createApi() {
api = ApiClient.api(ApiClient.Config.apiConfig().reqSpecSupplier(
() -> new RequestSpecBuilder()
@@ -303,4 +309,4 @@ public class FakeApiTest {
// TODO: test validations
}
-}
\ No newline at end of file
+}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java
index 3d2b74185ba..de05aa0a336 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java
@@ -18,14 +18,20 @@ import org.openapitools.client.ApiClient;
import org.openapitools.client.api.FakeClassnameTags123Api;
import io.restassured.builder.RequestSpecBuilder;
import io.restassured.filter.log.ErrorLoggingFilter;
-import org.junit.Before;
-import org.junit.Test;
-import org.junit.Ignore;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
+
+import jakarta.validation.constraints.*;
+import jakarta.validation.Valid;
+
import static io.restassured.config.ObjectMapperConfig.objectMapperConfig;
import static io.restassured.config.RestAssuredConfig.config;
import static org.openapitools.client.JacksonObjectMapper.jackson;
@@ -33,12 +39,12 @@ import static org.openapitools.client.JacksonObjectMapper.jackson;
/**
* API tests for FakeClassnameTags123Api
*/
-@Ignore
+@Disabled
public class FakeClassnameTags123ApiTest {
private FakeClassnameTags123Api api;
- @Before
+ @BeforeEach
public void createApi() {
api = ApiClient.api(ApiClient.Config.apiConfig().reqSpecSupplier(
() -> new RequestSpecBuilder()
@@ -58,4 +64,4 @@ public class FakeClassnameTags123ApiTest {
// TODO: test validations
}
-}
\ No newline at end of file
+}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/PetApiTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/PetApiTest.java
index 1ae1e95a3a7..7d169d41366 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/PetApiTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/PetApiTest.java
@@ -21,14 +21,20 @@ import org.openapitools.client.ApiClient;
import org.openapitools.client.api.PetApi;
import io.restassured.builder.RequestSpecBuilder;
import io.restassured.filter.log.ErrorLoggingFilter;
-import org.junit.Before;
-import org.junit.Test;
-import org.junit.Ignore;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
+
+import jakarta.validation.constraints.*;
+import jakarta.validation.Valid;
+
import static io.restassured.config.ObjectMapperConfig.objectMapperConfig;
import static io.restassured.config.RestAssuredConfig.config;
import static org.openapitools.client.JacksonObjectMapper.jackson;
@@ -36,12 +42,12 @@ import static org.openapitools.client.JacksonObjectMapper.jackson;
/**
* API tests for PetApi
*/
-@Ignore
+@Disabled
public class PetApiTest {
private PetApi api;
- @Before
+ @BeforeEach
public void createApi() {
api = ApiClient.api(ApiClient.Config.apiConfig().reqSpecSupplier(
() -> new RequestSpecBuilder()
@@ -244,7 +250,7 @@ public class PetApiTest {
public void shouldSee200AfterUploadFile() {
Long petId = null;
String additionalMetadata = null;
- File file = null;
+ File _file = null;
api.uploadFile()
.petIdPath(petId).execute(r -> r.prettyPeek());
// TODO: test validations
@@ -265,4 +271,4 @@ public class PetApiTest {
// TODO: test validations
}
-}
\ No newline at end of file
+}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/StoreApiTest.java
index 88b10b312b0..c3e65eb4696 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -18,14 +18,20 @@ import org.openapitools.client.ApiClient;
import org.openapitools.client.api.StoreApi;
import io.restassured.builder.RequestSpecBuilder;
import io.restassured.filter.log.ErrorLoggingFilter;
-import org.junit.Before;
-import org.junit.Test;
-import org.junit.Ignore;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
+
+import jakarta.validation.constraints.*;
+import jakarta.validation.Valid;
+
import static io.restassured.config.ObjectMapperConfig.objectMapperConfig;
import static io.restassured.config.RestAssuredConfig.config;
import static org.openapitools.client.JacksonObjectMapper.jackson;
@@ -33,12 +39,12 @@ import static org.openapitools.client.JacksonObjectMapper.jackson;
/**
* API tests for StoreApi
*/
-@Ignore
+@Disabled
public class StoreApiTest {
private StoreApi api;
- @Before
+ @BeforeEach
public void createApi() {
api = ApiClient.api(ApiClient.Config.apiConfig().reqSpecSupplier(
() -> new RequestSpecBuilder()
@@ -136,4 +142,4 @@ public class StoreApiTest {
// TODO: test validations
}
-}
\ No newline at end of file
+}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/UserApiTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/UserApiTest.java
index 8b224223bdb..b8e03ee1d4f 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/UserApiTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/UserApiTest.java
@@ -13,19 +13,26 @@
package org.openapitools.client.api;
+import java.time.OffsetDateTime;
import org.openapitools.client.model.User;
import org.openapitools.client.ApiClient;
import org.openapitools.client.api.UserApi;
import io.restassured.builder.RequestSpecBuilder;
import io.restassured.filter.log.ErrorLoggingFilter;
-import org.junit.Before;
-import org.junit.Test;
-import org.junit.Ignore;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
+
+import jakarta.validation.constraints.*;
+import jakarta.validation.Valid;
+
import static io.restassured.config.ObjectMapperConfig.objectMapperConfig;
import static io.restassured.config.RestAssuredConfig.config;
import static org.openapitools.client.JacksonObjectMapper.jackson;
@@ -33,12 +40,12 @@ import static org.openapitools.client.JacksonObjectMapper.jackson;
/**
* API tests for UserApi
*/
-@Ignore
+@Disabled
public class UserApiTest {
private UserApi api;
- @Before
+ @BeforeEach
public void createApi() {
api = ApiClient.api(ApiClient.Config.apiConfig().reqSpecSupplier(
() -> new RequestSpecBuilder()
@@ -64,7 +71,7 @@ public class UserApiTest {
*/
@Test
public void shouldSee0AfterCreateUsersWithArrayInput() {
- List body = null;
+ List<@Valid User> body = null;
api.createUsersWithArrayInput()
.body(body).execute(r -> r.prettyPeek());
// TODO: test validations
@@ -76,7 +83,7 @@ public class UserApiTest {
*/
@Test
public void shouldSee0AfterCreateUsersWithListInput() {
- List body = null;
+ List<@Valid User> body = null;
api.createUsersWithListInput()
.body(body).execute(r -> r.prettyPeek());
// TODO: test validations
@@ -203,4 +210,4 @@ public class UserApiTest {
// TODO: test validations
}
-}
\ No newline at end of file
+}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java
index 4f6fd800ab7..faacb289c17 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java
@@ -20,22 +20,21 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesAnyType
*/
-public class AdditionalPropertiesAnyTypeTest {
+class AdditionalPropertiesAnyTypeTest {
private final AdditionalPropertiesAnyType model = new AdditionalPropertiesAnyType();
/**
* Model tests for AdditionalPropertiesAnyType
*/
@Test
- public void testAdditionalPropertiesAnyType() {
+ void testAdditionalPropertiesAnyType() {
// TODO: test AdditionalPropertiesAnyType
}
@@ -43,7 +42,7 @@ public class AdditionalPropertiesAnyTypeTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java
index 41e6497ecee..b506ff7ae92 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java
@@ -21,22 +21,21 @@ import com.fasterxml.jackson.annotation.JsonValue;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesArray
*/
-public class AdditionalPropertiesArrayTest {
+class AdditionalPropertiesArrayTest {
private final AdditionalPropertiesArray model = new AdditionalPropertiesArray();
/**
* Model tests for AdditionalPropertiesArray
*/
@Test
- public void testAdditionalPropertiesArray() {
+ void testAdditionalPropertiesArray() {
// TODO: test AdditionalPropertiesArray
}
@@ -44,7 +43,7 @@ public class AdditionalPropertiesArrayTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java
index d2e17831ba7..ba65ffedc14 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java
@@ -20,22 +20,21 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesBoolean
*/
-public class AdditionalPropertiesBooleanTest {
+class AdditionalPropertiesBooleanTest {
private final AdditionalPropertiesBoolean model = new AdditionalPropertiesBoolean();
/**
* Model tests for AdditionalPropertiesBoolean
*/
@Test
- public void testAdditionalPropertiesBoolean() {
+ void testAdditionalPropertiesBoolean() {
// TODO: test AdditionalPropertiesBoolean
}
@@ -43,7 +42,7 @@ public class AdditionalPropertiesBooleanTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java
index 14fd8022feb..72854079e5e 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java
@@ -22,22 +22,21 @@ import java.math.BigDecimal;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesClass
*/
-public class AdditionalPropertiesClassTest {
+class AdditionalPropertiesClassTest {
private final AdditionalPropertiesClass model = new AdditionalPropertiesClass();
/**
* Model tests for AdditionalPropertiesClass
*/
@Test
- public void testAdditionalPropertiesClass() {
+ void testAdditionalPropertiesClass() {
// TODO: test AdditionalPropertiesClass
}
@@ -45,7 +44,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapString'
*/
@Test
- public void mapStringTest() {
+ void mapStringTest() {
// TODO: test mapString
}
@@ -53,7 +52,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapNumber'
*/
@Test
- public void mapNumberTest() {
+ void mapNumberTest() {
// TODO: test mapNumber
}
@@ -61,7 +60,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapInteger'
*/
@Test
- public void mapIntegerTest() {
+ void mapIntegerTest() {
// TODO: test mapInteger
}
@@ -69,7 +68,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapBoolean'
*/
@Test
- public void mapBooleanTest() {
+ void mapBooleanTest() {
// TODO: test mapBoolean
}
@@ -77,7 +76,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapArrayInteger'
*/
@Test
- public void mapArrayIntegerTest() {
+ void mapArrayIntegerTest() {
// TODO: test mapArrayInteger
}
@@ -85,7 +84,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapArrayAnytype'
*/
@Test
- public void mapArrayAnytypeTest() {
+ void mapArrayAnytypeTest() {
// TODO: test mapArrayAnytype
}
@@ -93,7 +92,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapMapString'
*/
@Test
- public void mapMapStringTest() {
+ void mapMapStringTest() {
// TODO: test mapMapString
}
@@ -101,7 +100,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapMapAnytype'
*/
@Test
- public void mapMapAnytypeTest() {
+ void mapMapAnytypeTest() {
// TODO: test mapMapAnytype
}
@@ -109,7 +108,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'anytype1'
*/
@Test
- public void anytype1Test() {
+ void anytype1Test() {
// TODO: test anytype1
}
@@ -117,7 +116,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'anytype2'
*/
@Test
- public void anytype2Test() {
+ void anytype2Test() {
// TODO: test anytype2
}
@@ -125,7 +124,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'anytype3'
*/
@Test
- public void anytype3Test() {
+ void anytype3Test() {
// TODO: test anytype3
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java
index 58b7521c6a7..916c2c2bcb3 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java
@@ -20,22 +20,21 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesInteger
*/
-public class AdditionalPropertiesIntegerTest {
+class AdditionalPropertiesIntegerTest {
private final AdditionalPropertiesInteger model = new AdditionalPropertiesInteger();
/**
* Model tests for AdditionalPropertiesInteger
*/
@Test
- public void testAdditionalPropertiesInteger() {
+ void testAdditionalPropertiesInteger() {
// TODO: test AdditionalPropertiesInteger
}
@@ -43,7 +42,7 @@ public class AdditionalPropertiesIntegerTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java
index 10ad938f52c..a099245eec5 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java
@@ -21,22 +21,21 @@ import com.fasterxml.jackson.annotation.JsonValue;
import java.math.BigDecimal;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesNumber
*/
-public class AdditionalPropertiesNumberTest {
+class AdditionalPropertiesNumberTest {
private final AdditionalPropertiesNumber model = new AdditionalPropertiesNumber();
/**
* Model tests for AdditionalPropertiesNumber
*/
@Test
- public void testAdditionalPropertiesNumber() {
+ void testAdditionalPropertiesNumber() {
// TODO: test AdditionalPropertiesNumber
}
@@ -44,7 +43,7 @@ public class AdditionalPropertiesNumberTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java
index bcbb9c54b27..d47c9a37d1f 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java
@@ -20,22 +20,21 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesObject
*/
-public class AdditionalPropertiesObjectTest {
+class AdditionalPropertiesObjectTest {
private final AdditionalPropertiesObject model = new AdditionalPropertiesObject();
/**
* Model tests for AdditionalPropertiesObject
*/
@Test
- public void testAdditionalPropertiesObject() {
+ void testAdditionalPropertiesObject() {
// TODO: test AdditionalPropertiesObject
}
@@ -43,7 +42,7 @@ public class AdditionalPropertiesObjectTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java
index f7662d6c469..3820dd2e23c 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java
@@ -20,22 +20,21 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesString
*/
-public class AdditionalPropertiesStringTest {
+class AdditionalPropertiesStringTest {
private final AdditionalPropertiesString model = new AdditionalPropertiesString();
/**
* Model tests for AdditionalPropertiesString
*/
@Test
- public void testAdditionalPropertiesString() {
+ void testAdditionalPropertiesString() {
// TODO: test AdditionalPropertiesString
}
@@ -43,7 +42,7 @@ public class AdditionalPropertiesStringTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AnimalTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AnimalTest.java
index 930e5c17d07..24776d3cb51 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AnimalTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/AnimalTest.java
@@ -21,25 +21,21 @@ import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.openapitools.client.model.BigCat;
-import org.openapitools.client.model.Cat;
-import org.openapitools.client.model.Dog;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Animal
*/
-public class AnimalTest {
+class AnimalTest {
private final Animal model = new Animal();
/**
* Model tests for Animal
*/
@Test
- public void testAnimal() {
+ void testAnimal() {
// TODO: test Animal
}
@@ -47,7 +43,7 @@ public class AnimalTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -55,7 +51,7 @@ public class AnimalTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java
index 57a1c4f37ec..6bbe877044d 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java
@@ -20,23 +20,23 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayOfArrayOfNumberOnly
*/
-public class ArrayOfArrayOfNumberOnlyTest {
+class ArrayOfArrayOfNumberOnlyTest {
private final ArrayOfArrayOfNumberOnly model = new ArrayOfArrayOfNumberOnly();
/**
* Model tests for ArrayOfArrayOfNumberOnly
*/
@Test
- public void testArrayOfArrayOfNumberOnly() {
+ void testArrayOfArrayOfNumberOnly() {
// TODO: test ArrayOfArrayOfNumberOnly
}
@@ -44,7 +44,7 @@ public class ArrayOfArrayOfNumberOnlyTest {
* Test the property 'arrayArrayNumber'
*/
@Test
- public void arrayArrayNumberTest() {
+ void arrayArrayNumberTest() {
// TODO: test arrayArrayNumber
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java
index 4f127b838bc..eaf908bb1ab 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java
@@ -20,23 +20,23 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayOfNumberOnly
*/
-public class ArrayOfNumberOnlyTest {
+class ArrayOfNumberOnlyTest {
private final ArrayOfNumberOnly model = new ArrayOfNumberOnly();
/**
* Model tests for ArrayOfNumberOnly
*/
@Test
- public void testArrayOfNumberOnly() {
+ void testArrayOfNumberOnly() {
// TODO: test ArrayOfNumberOnly
}
@@ -44,7 +44,7 @@ public class ArrayOfNumberOnlyTest {
* Test the property 'arrayNumber'
*/
@Test
- public void arrayNumberTest() {
+ void arrayNumberTest() {
// TODO: test arrayNumber
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ArrayTestTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ArrayTestTest.java
index 5874400602c..99c6bcf5360 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ArrayTestTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ArrayTestTest.java
@@ -19,24 +19,24 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
import org.openapitools.client.model.ReadOnlyFirst;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayTest
*/
-public class ArrayTestTest {
+class ArrayTestTest {
private final ArrayTest model = new ArrayTest();
/**
* Model tests for ArrayTest
*/
@Test
- public void testArrayTest() {
+ void testArrayTest() {
// TODO: test ArrayTest
}
@@ -44,7 +44,7 @@ public class ArrayTestTest {
* Test the property 'arrayOfString'
*/
@Test
- public void arrayOfStringTest() {
+ void arrayOfStringTest() {
// TODO: test arrayOfString
}
@@ -52,7 +52,7 @@ public class ArrayTestTest {
* Test the property 'arrayArrayOfInteger'
*/
@Test
- public void arrayArrayOfIntegerTest() {
+ void arrayArrayOfIntegerTest() {
// TODO: test arrayArrayOfInteger
}
@@ -60,7 +60,7 @@ public class ArrayTestTest {
* Test the property 'arrayArrayOfModel'
*/
@Test
- public void arrayArrayOfModelTest() {
+ void arrayArrayOfModelTest() {
// TODO: test arrayArrayOfModel
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/BigCatTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/BigCatTest.java
index 765bd150512..20bc4e0d424 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/BigCatTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/BigCatTest.java
@@ -22,21 +22,21 @@ import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import org.openapitools.client.model.Cat;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for BigCat
*/
-public class BigCatTest {
+class BigCatTest {
private final BigCat model = new BigCat();
/**
* Model tests for BigCat
*/
@Test
- public void testBigCat() {
+ void testBigCat() {
// TODO: test BigCat
}
@@ -44,7 +44,7 @@ public class BigCatTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -52,7 +52,7 @@ public class BigCatTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
@@ -60,7 +60,7 @@ public class BigCatTest {
* Test the property 'declawed'
*/
@Test
- public void declawedTest() {
+ void declawedTest() {
// TODO: test declawed
}
@@ -68,7 +68,7 @@ public class BigCatTest {
* Test the property 'kind'
*/
@Test
- public void kindTest() {
+ void kindTest() {
// TODO: test kind
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/CapitalizationTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/CapitalizationTest.java
index c69ffc12a07..a0217acd1f2 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/CapitalizationTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/CapitalizationTest.java
@@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Capitalization
*/
-public class CapitalizationTest {
+class CapitalizationTest {
private final Capitalization model = new Capitalization();
/**
* Model tests for Capitalization
*/
@Test
- public void testCapitalization() {
+ void testCapitalization() {
// TODO: test Capitalization
}
@@ -41,7 +40,7 @@ public class CapitalizationTest {
* Test the property 'smallCamel'
*/
@Test
- public void smallCamelTest() {
+ void smallCamelTest() {
// TODO: test smallCamel
}
@@ -49,7 +48,7 @@ public class CapitalizationTest {
* Test the property 'capitalCamel'
*/
@Test
- public void capitalCamelTest() {
+ void capitalCamelTest() {
// TODO: test capitalCamel
}
@@ -57,7 +56,7 @@ public class CapitalizationTest {
* Test the property 'smallSnake'
*/
@Test
- public void smallSnakeTest() {
+ void smallSnakeTest() {
// TODO: test smallSnake
}
@@ -65,7 +64,7 @@ public class CapitalizationTest {
* Test the property 'capitalSnake'
*/
@Test
- public void capitalSnakeTest() {
+ void capitalSnakeTest() {
// TODO: test capitalSnake
}
@@ -73,7 +72,7 @@ public class CapitalizationTest {
* Test the property 'scAETHFlowPoints'
*/
@Test
- public void scAETHFlowPointsTest() {
+ void scAETHFlowPointsTest() {
// TODO: test scAETHFlowPoints
}
@@ -81,7 +80,7 @@ public class CapitalizationTest {
* Test the property 'ATT_NAME'
*/
@Test
- public void ATT_NAMETest() {
+ void ATT_NAMETest() {
// TODO: test ATT_NAME
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/CatTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/CatTest.java
index 90fdba14c24..1b389a075be 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/CatTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/CatTest.java
@@ -22,23 +22,21 @@ import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import org.openapitools.client.model.Animal;
-import org.openapitools.client.model.BigCat;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Cat
*/
-public class CatTest {
+class CatTest {
private final Cat model = new Cat();
/**
* Model tests for Cat
*/
@Test
- public void testCat() {
+ void testCat() {
// TODO: test Cat
}
@@ -46,7 +44,7 @@ public class CatTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -54,7 +52,7 @@ public class CatTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
@@ -62,7 +60,7 @@ public class CatTest {
* Test the property 'declawed'
*/
@Test
- public void declawedTest() {
+ void declawedTest() {
// TODO: test declawed
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/CategoryTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/CategoryTest.java
index 393f73bd5e6..22fcbd7f3cc 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/CategoryTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/CategoryTest.java
@@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Category
*/
-public class CategoryTest {
+class CategoryTest {
private final Category model = new Category();
/**
* Model tests for Category
*/
@Test
- public void testCategory() {
+ void testCategory() {
// TODO: test Category
}
@@ -41,7 +40,7 @@ public class CategoryTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -49,7 +48,7 @@ public class CategoryTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ClassModelTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ClassModelTest.java
index 5005bcb800e..6ef5c744fbc 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ClassModelTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ClassModelTest.java
@@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ClassModel
*/
-public class ClassModelTest {
+class ClassModelTest {
private final ClassModel model = new ClassModel();
/**
* Model tests for ClassModel
*/
@Test
- public void testClassModel() {
+ void testClassModel() {
// TODO: test ClassModel
}
@@ -41,7 +40,7 @@ public class ClassModelTest {
* Test the property 'propertyClass'
*/
@Test
- public void propertyClassTest() {
+ void propertyClassTest() {
// TODO: test propertyClass
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ClientTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ClientTest.java
index bda3b360b74..8028f11bc2b 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ClientTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ClientTest.java
@@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Client
*/
-public class ClientTest {
+class ClientTest {
private final Client model = new Client();
/**
* Model tests for Client
*/
@Test
- public void testClient() {
+ void testClient() {
// TODO: test Client
}
@@ -41,7 +40,7 @@ public class ClientTest {
* Test the property 'client'
*/
@Test
- public void clientTest() {
+ void clientTest() {
// TODO: test client
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/DogTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/DogTest.java
index de77d6711bd..b2a12ab4c5e 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/DogTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/DogTest.java
@@ -22,22 +22,21 @@ import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import org.openapitools.client.model.Animal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Dog
*/
-public class DogTest {
+class DogTest {
private final Dog model = new Dog();
/**
* Model tests for Dog
*/
@Test
- public void testDog() {
+ void testDog() {
// TODO: test Dog
}
@@ -45,7 +44,7 @@ public class DogTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -53,7 +52,7 @@ public class DogTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
@@ -61,7 +60,7 @@ public class DogTest {
* Test the property 'breed'
*/
@Test
- public void breedTest() {
+ void breedTest() {
// TODO: test breed
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/EnumArraysTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/EnumArraysTest.java
index 73206626b9c..4a755b0d442 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/EnumArraysTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/EnumArraysTest.java
@@ -19,23 +19,23 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for EnumArrays
*/
-public class EnumArraysTest {
+class EnumArraysTest {
private final EnumArrays model = new EnumArrays();
/**
* Model tests for EnumArrays
*/
@Test
- public void testEnumArrays() {
+ void testEnumArrays() {
// TODO: test EnumArrays
}
@@ -43,7 +43,7 @@ public class EnumArraysTest {
* Test the property 'justSymbol'
*/
@Test
- public void justSymbolTest() {
+ void justSymbolTest() {
// TODO: test justSymbol
}
@@ -51,7 +51,7 @@ public class EnumArraysTest {
* Test the property 'arrayEnum'
*/
@Test
- public void arrayEnumTest() {
+ void arrayEnumTest() {
// TODO: test arrayEnum
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/EnumClassTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/EnumClassTest.java
index 9e45543facd..48aa1a737fc 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/EnumClassTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/EnumClassTest.java
@@ -13,20 +13,19 @@
package org.openapitools.client.model;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for EnumClass
*/
-public class EnumClassTest {
+class EnumClassTest {
/**
* Model tests for EnumClass
*/
@Test
- public void testEnumClass() {
+ void testEnumClass() {
// TODO: test EnumClass
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/EnumTestTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/EnumTestTest.java
index 8907cfa8e8f..b06e3eb195d 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/EnumTestTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/EnumTestTest.java
@@ -19,22 +19,21 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import org.openapitools.client.model.OuterEnum;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for EnumTest
*/
-public class EnumTestTest {
+class EnumTestTest {
private final EnumTest model = new EnumTest();
/**
* Model tests for EnumTest
*/
@Test
- public void testEnumTest() {
+ void testEnumTest() {
// TODO: test EnumTest
}
@@ -42,7 +41,7 @@ public class EnumTestTest {
* Test the property 'enumString'
*/
@Test
- public void enumStringTest() {
+ void enumStringTest() {
// TODO: test enumString
}
@@ -50,7 +49,7 @@ public class EnumTestTest {
* Test the property 'enumStringRequired'
*/
@Test
- public void enumStringRequiredTest() {
+ void enumStringRequiredTest() {
// TODO: test enumStringRequired
}
@@ -58,7 +57,7 @@ public class EnumTestTest {
* Test the property 'enumInteger'
*/
@Test
- public void enumIntegerTest() {
+ void enumIntegerTest() {
// TODO: test enumInteger
}
@@ -66,7 +65,7 @@ public class EnumTestTest {
* Test the property 'enumNumber'
*/
@Test
- public void enumNumberTest() {
+ void enumNumberTest() {
// TODO: test enumNumber
}
@@ -74,7 +73,7 @@ public class EnumTestTest {
* Test the property 'outerEnum'
*/
@Test
- public void outerEnumTest() {
+ void outerEnumTest() {
// TODO: test outerEnum
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java
index 493d84aa1bc..0048cb2c749 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java
@@ -19,24 +19,24 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
import org.openapitools.client.model.ModelFile;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for FileSchemaTestClass
*/
-public class FileSchemaTestClassTest {
+class FileSchemaTestClassTest {
private final FileSchemaTestClass model = new FileSchemaTestClass();
/**
* Model tests for FileSchemaTestClass
*/
@Test
- public void testFileSchemaTestClass() {
+ void testFileSchemaTestClass() {
// TODO: test FileSchemaTestClass
}
@@ -44,7 +44,7 @@ public class FileSchemaTestClassTest {
* Test the property '_file'
*/
@Test
- public void _fileTest() {
+ void _fileTest() {
// TODO: test _file
}
@@ -52,7 +52,7 @@ public class FileSchemaTestClassTest {
* Test the property 'files'
*/
@Test
- public void filesTest() {
+ void filesTest() {
// TODO: test files
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/FormatTestTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/FormatTestTest.java
index 48bec93d994..3060f7f2d56 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/FormatTestTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/FormatTestTest.java
@@ -23,22 +23,21 @@ import java.math.BigDecimal;
import java.time.LocalDate;
import java.time.OffsetDateTime;
import java.util.UUID;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for FormatTest
*/
-public class FormatTestTest {
+class FormatTestTest {
private final FormatTest model = new FormatTest();
/**
* Model tests for FormatTest
*/
@Test
- public void testFormatTest() {
+ void testFormatTest() {
// TODO: test FormatTest
}
@@ -46,7 +45,7 @@ public class FormatTestTest {
* Test the property 'integer'
*/
@Test
- public void integerTest() {
+ void integerTest() {
// TODO: test integer
}
@@ -54,7 +53,7 @@ public class FormatTestTest {
* Test the property 'int32'
*/
@Test
- public void int32Test() {
+ void int32Test() {
// TODO: test int32
}
@@ -62,7 +61,7 @@ public class FormatTestTest {
* Test the property 'int64'
*/
@Test
- public void int64Test() {
+ void int64Test() {
// TODO: test int64
}
@@ -70,7 +69,7 @@ public class FormatTestTest {
* Test the property 'number'
*/
@Test
- public void numberTest() {
+ void numberTest() {
// TODO: test number
}
@@ -78,7 +77,7 @@ public class FormatTestTest {
* Test the property '_float'
*/
@Test
- public void _floatTest() {
+ void _floatTest() {
// TODO: test _float
}
@@ -86,7 +85,7 @@ public class FormatTestTest {
* Test the property '_double'
*/
@Test
- public void _doubleTest() {
+ void _doubleTest() {
// TODO: test _double
}
@@ -94,7 +93,7 @@ public class FormatTestTest {
* Test the property 'string'
*/
@Test
- public void stringTest() {
+ void stringTest() {
// TODO: test string
}
@@ -102,7 +101,7 @@ public class FormatTestTest {
* Test the property '_byte'
*/
@Test
- public void _byteTest() {
+ void _byteTest() {
// TODO: test _byte
}
@@ -110,7 +109,7 @@ public class FormatTestTest {
* Test the property 'binary'
*/
@Test
- public void binaryTest() {
+ void binaryTest() {
// TODO: test binary
}
@@ -118,7 +117,7 @@ public class FormatTestTest {
* Test the property 'date'
*/
@Test
- public void dateTest() {
+ void dateTest() {
// TODO: test date
}
@@ -126,7 +125,7 @@ public class FormatTestTest {
* Test the property 'dateTime'
*/
@Test
- public void dateTimeTest() {
+ void dateTimeTest() {
// TODO: test dateTime
}
@@ -134,7 +133,7 @@ public class FormatTestTest {
* Test the property 'uuid'
*/
@Test
- public void uuidTest() {
+ void uuidTest() {
// TODO: test uuid
}
@@ -142,7 +141,7 @@ public class FormatTestTest {
* Test the property 'password'
*/
@Test
- public void passwordTest() {
+ void passwordTest() {
// TODO: test password
}
@@ -150,7 +149,7 @@ public class FormatTestTest {
* Test the property 'bigDecimal'
*/
@Test
- public void bigDecimalTest() {
+ void bigDecimalTest() {
// TODO: test bigDecimal
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java
index da9073d4500..908f0aff6ed 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java
@@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for HasOnlyReadOnly
*/
-public class HasOnlyReadOnlyTest {
+class HasOnlyReadOnlyTest {
private final HasOnlyReadOnly model = new HasOnlyReadOnly();
/**
* Model tests for HasOnlyReadOnly
*/
@Test
- public void testHasOnlyReadOnly() {
+ void testHasOnlyReadOnly() {
// TODO: test HasOnlyReadOnly
}
@@ -41,7 +40,7 @@ public class HasOnlyReadOnlyTest {
* Test the property 'bar'
*/
@Test
- public void barTest() {
+ void barTest() {
// TODO: test bar
}
@@ -49,7 +48,7 @@ public class HasOnlyReadOnlyTest {
* Test the property 'foo'
*/
@Test
- public void fooTest() {
+ void fooTest() {
// TODO: test foo
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/MapTestTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/MapTestTest.java
index 22c8519472b..3752c5ba31f 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/MapTestTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/MapTestTest.java
@@ -20,22 +20,21 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for MapTest
*/
-public class MapTestTest {
+class MapTestTest {
private final MapTest model = new MapTest();
/**
* Model tests for MapTest
*/
@Test
- public void testMapTest() {
+ void testMapTest() {
// TODO: test MapTest
}
@@ -43,7 +42,7 @@ public class MapTestTest {
* Test the property 'mapMapOfString'
*/
@Test
- public void mapMapOfStringTest() {
+ void mapMapOfStringTest() {
// TODO: test mapMapOfString
}
@@ -51,7 +50,7 @@ public class MapTestTest {
* Test the property 'mapOfEnumString'
*/
@Test
- public void mapOfEnumStringTest() {
+ void mapOfEnumStringTest() {
// TODO: test mapOfEnumString
}
@@ -59,7 +58,7 @@ public class MapTestTest {
* Test the property 'directMap'
*/
@Test
- public void directMapTest() {
+ void directMapTest() {
// TODO: test directMap
}
@@ -67,7 +66,7 @@ public class MapTestTest {
* Test the property 'indirectMap'
*/
@Test
- public void indirectMapTest() {
+ void indirectMapTest() {
// TODO: test indirectMap
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java
index f29932e96be..0f47e193af8 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java
@@ -23,22 +23,21 @@ import java.util.HashMap;
import java.util.Map;
import java.util.UUID;
import org.openapitools.client.model.Animal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for MixedPropertiesAndAdditionalPropertiesClass
*/
-public class MixedPropertiesAndAdditionalPropertiesClassTest {
+class MixedPropertiesAndAdditionalPropertiesClassTest {
private final MixedPropertiesAndAdditionalPropertiesClass model = new MixedPropertiesAndAdditionalPropertiesClass();
/**
* Model tests for MixedPropertiesAndAdditionalPropertiesClass
*/
@Test
- public void testMixedPropertiesAndAdditionalPropertiesClass() {
+ void testMixedPropertiesAndAdditionalPropertiesClass() {
// TODO: test MixedPropertiesAndAdditionalPropertiesClass
}
@@ -46,7 +45,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'uuid'
*/
@Test
- public void uuidTest() {
+ void uuidTest() {
// TODO: test uuid
}
@@ -54,7 +53,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'dateTime'
*/
@Test
- public void dateTimeTest() {
+ void dateTimeTest() {
// TODO: test dateTime
}
@@ -62,7 +61,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'map'
*/
@Test
- public void mapTest() {
+ void mapTest() {
// TODO: test map
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/Model200ResponseTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/Model200ResponseTest.java
index 0cd3f976198..5743b70142b 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/Model200ResponseTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/Model200ResponseTest.java
@@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Model200Response
*/
-public class Model200ResponseTest {
+class Model200ResponseTest {
private final Model200Response model = new Model200Response();
/**
* Model tests for Model200Response
*/
@Test
- public void testModel200Response() {
+ void testModel200Response() {
// TODO: test Model200Response
}
@@ -41,7 +40,7 @@ public class Model200ResponseTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
@@ -49,7 +48,7 @@ public class Model200ResponseTest {
* Test the property 'propertyClass'
*/
@Test
- public void propertyClassTest() {
+ void propertyClassTest() {
// TODO: test propertyClass
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java
index be8cca35e3e..436e4abd59e 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java
@@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelApiResponse
*/
-public class ModelApiResponseTest {
+class ModelApiResponseTest {
private final ModelApiResponse model = new ModelApiResponse();
/**
* Model tests for ModelApiResponse
*/
@Test
- public void testModelApiResponse() {
+ void testModelApiResponse() {
// TODO: test ModelApiResponse
}
@@ -41,7 +40,7 @@ public class ModelApiResponseTest {
* Test the property 'code'
*/
@Test
- public void codeTest() {
+ void codeTest() {
// TODO: test code
}
@@ -49,7 +48,7 @@ public class ModelApiResponseTest {
* Test the property 'type'
*/
@Test
- public void typeTest() {
+ void typeTest() {
// TODO: test type
}
@@ -57,7 +56,7 @@ public class ModelApiResponseTest {
* Test the property 'message'
*/
@Test
- public void messageTest() {
+ void messageTest() {
// TODO: test message
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ModelFileTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ModelFileTest.java
index a0247ae71be..f128d7b9ac2 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ModelFileTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ModelFileTest.java
@@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelFile
*/
-public class ModelFileTest {
+class ModelFileTest {
private final ModelFile model = new ModelFile();
/**
* Model tests for ModelFile
*/
@Test
- public void testModelFile() {
+ void testModelFile() {
// TODO: test ModelFile
}
@@ -41,7 +40,7 @@ public class ModelFileTest {
* Test the property 'sourceURI'
*/
@Test
- public void sourceURITest() {
+ void sourceURITest() {
// TODO: test sourceURI
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ModelListTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ModelListTest.java
index 0ead99db3a5..92273f48d23 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ModelListTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ModelListTest.java
@@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelList
*/
-public class ModelListTest {
+class ModelListTest {
private final ModelList model = new ModelList();
/**
* Model tests for ModelList
*/
@Test
- public void testModelList() {
+ void testModelList() {
// TODO: test ModelList
}
@@ -41,7 +40,7 @@ public class ModelListTest {
* Test the property '_123list'
*/
@Test
- public void _123listTest() {
+ void _123listTest() {
// TODO: test _123list
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ModelReturnTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ModelReturnTest.java
index b6ca02f8d23..1c5337654cd 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ModelReturnTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ModelReturnTest.java
@@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelReturn
*/
-public class ModelReturnTest {
+class ModelReturnTest {
private final ModelReturn model = new ModelReturn();
/**
* Model tests for ModelReturn
*/
@Test
- public void testModelReturn() {
+ void testModelReturn() {
// TODO: test ModelReturn
}
@@ -41,7 +40,7 @@ public class ModelReturnTest {
* Test the property '_return'
*/
@Test
- public void _returnTest() {
+ void _returnTest() {
// TODO: test _return
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/NameTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/NameTest.java
index 07684c9eb40..1a6aa18fa20 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/NameTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/NameTest.java
@@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Name
*/
-public class NameTest {
+class NameTest {
private final Name model = new Name();
/**
* Model tests for Name
*/
@Test
- public void testName() {
+ void testName() {
// TODO: test Name
}
@@ -41,7 +40,7 @@ public class NameTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
@@ -49,7 +48,7 @@ public class NameTest {
* Test the property 'snakeCase'
*/
@Test
- public void snakeCaseTest() {
+ void snakeCaseTest() {
// TODO: test snakeCase
}
@@ -57,7 +56,7 @@ public class NameTest {
* Test the property 'property'
*/
@Test
- public void propertyTest() {
+ void propertyTest() {
// TODO: test property
}
@@ -65,7 +64,7 @@ public class NameTest {
* Test the property '_123number'
*/
@Test
- public void _123numberTest() {
+ void _123numberTest() {
// TODO: test _123number
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/NumberOnlyTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/NumberOnlyTest.java
index 878095093ad..8623386a5e9 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/NumberOnlyTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/NumberOnlyTest.java
@@ -19,22 +19,21 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.math.BigDecimal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for NumberOnly
*/
-public class NumberOnlyTest {
+class NumberOnlyTest {
private final NumberOnly model = new NumberOnly();
/**
* Model tests for NumberOnly
*/
@Test
- public void testNumberOnly() {
+ void testNumberOnly() {
// TODO: test NumberOnly
}
@@ -42,7 +41,7 @@ public class NumberOnlyTest {
* Test the property 'justNumber'
*/
@Test
- public void justNumberTest() {
+ void justNumberTest() {
// TODO: test justNumber
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/OrderTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/OrderTest.java
index f31e10a9df1..670c2535646 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/OrderTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/OrderTest.java
@@ -19,22 +19,21 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.time.OffsetDateTime;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Order
*/
-public class OrderTest {
+class OrderTest {
private final Order model = new Order();
/**
* Model tests for Order
*/
@Test
- public void testOrder() {
+ void testOrder() {
// TODO: test Order
}
@@ -42,7 +41,7 @@ public class OrderTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -50,7 +49,7 @@ public class OrderTest {
* Test the property 'petId'
*/
@Test
- public void petIdTest() {
+ void petIdTest() {
// TODO: test petId
}
@@ -58,7 +57,7 @@ public class OrderTest {
* Test the property 'quantity'
*/
@Test
- public void quantityTest() {
+ void quantityTest() {
// TODO: test quantity
}
@@ -66,7 +65,7 @@ public class OrderTest {
* Test the property 'shipDate'
*/
@Test
- public void shipDateTest() {
+ void shipDateTest() {
// TODO: test shipDate
}
@@ -74,7 +73,7 @@ public class OrderTest {
* Test the property 'status'
*/
@Test
- public void statusTest() {
+ void statusTest() {
// TODO: test status
}
@@ -82,7 +81,7 @@ public class OrderTest {
* Test the property 'complete'
*/
@Test
- public void completeTest() {
+ void completeTest() {
// TODO: test complete
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/OuterCompositeTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/OuterCompositeTest.java
index 8b823572e5e..870a977da94 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/OuterCompositeTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/OuterCompositeTest.java
@@ -19,22 +19,21 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.math.BigDecimal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for OuterComposite
*/
-public class OuterCompositeTest {
+class OuterCompositeTest {
private final OuterComposite model = new OuterComposite();
/**
* Model tests for OuterComposite
*/
@Test
- public void testOuterComposite() {
+ void testOuterComposite() {
// TODO: test OuterComposite
}
@@ -42,7 +41,7 @@ public class OuterCompositeTest {
* Test the property 'myNumber'
*/
@Test
- public void myNumberTest() {
+ void myNumberTest() {
// TODO: test myNumber
}
@@ -50,7 +49,7 @@ public class OuterCompositeTest {
* Test the property 'myString'
*/
@Test
- public void myStringTest() {
+ void myStringTest() {
// TODO: test myString
}
@@ -58,7 +57,7 @@ public class OuterCompositeTest {
* Test the property 'myBoolean'
*/
@Test
- public void myBooleanTest() {
+ void myBooleanTest() {
// TODO: test myBoolean
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/OuterEnumTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/OuterEnumTest.java
index cf0ebae0faf..0333ee657a0 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/OuterEnumTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/OuterEnumTest.java
@@ -13,20 +13,19 @@
package org.openapitools.client.model;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for OuterEnum
*/
-public class OuterEnumTest {
+class OuterEnumTest {
/**
* Model tests for OuterEnum
*/
@Test
- public void testOuterEnum() {
+ void testOuterEnum() {
// TODO: test OuterEnum
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/PetTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/PetTest.java
index b48657d0c9a..2e4303f1e4b 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/PetTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/PetTest.java
@@ -20,27 +20,27 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Set;
import org.openapitools.client.model.Category;
import org.openapitools.client.model.Tag;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Pet
*/
-public class PetTest {
+class PetTest {
private final Pet model = new Pet();
/**
* Model tests for Pet
*/
@Test
- public void testPet() {
+ void testPet() {
// TODO: test Pet
}
@@ -48,7 +48,7 @@ public class PetTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -56,7 +56,7 @@ public class PetTest {
* Test the property 'category'
*/
@Test
- public void categoryTest() {
+ void categoryTest() {
// TODO: test category
}
@@ -64,7 +64,7 @@ public class PetTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
@@ -72,7 +72,7 @@ public class PetTest {
* Test the property 'photoUrls'
*/
@Test
- public void photoUrlsTest() {
+ void photoUrlsTest() {
// TODO: test photoUrls
}
@@ -80,7 +80,7 @@ public class PetTest {
* Test the property 'tags'
*/
@Test
- public void tagsTest() {
+ void tagsTest() {
// TODO: test tags
}
@@ -88,7 +88,7 @@ public class PetTest {
* Test the property 'status'
*/
@Test
- public void statusTest() {
+ void statusTest() {
// TODO: test status
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java
index 26356ec2048..c56da4290fa 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java
@@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ReadOnlyFirst
*/
-public class ReadOnlyFirstTest {
+class ReadOnlyFirstTest {
private final ReadOnlyFirst model = new ReadOnlyFirst();
/**
* Model tests for ReadOnlyFirst
*/
@Test
- public void testReadOnlyFirst() {
+ void testReadOnlyFirst() {
// TODO: test ReadOnlyFirst
}
@@ -41,7 +40,7 @@ public class ReadOnlyFirstTest {
* Test the property 'bar'
*/
@Test
- public void barTest() {
+ void barTest() {
// TODO: test bar
}
@@ -49,7 +48,7 @@ public class ReadOnlyFirstTest {
* Test the property 'baz'
*/
@Test
- public void bazTest() {
+ void bazTest() {
// TODO: test baz
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java
index 4e59989875a..9501cf722d6 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java
@@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for SpecialModelName
*/
-public class SpecialModelNameTest {
+class SpecialModelNameTest {
private final SpecialModelName model = new SpecialModelName();
/**
* Model tests for SpecialModelName
*/
@Test
- public void testSpecialModelName() {
+ void testSpecialModelName() {
// TODO: test SpecialModelName
}
@@ -41,7 +40,7 @@ public class SpecialModelNameTest {
* Test the property '$specialPropertyName'
*/
@Test
- public void $specialPropertyNameTest() {
+ void $specialPropertyNameTest() {
// TODO: test $specialPropertyName
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/TagTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/TagTest.java
index 5aeb2f3f948..dc9cf9742ef 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/TagTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/TagTest.java
@@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Tag
*/
-public class TagTest {
+class TagTest {
private final Tag model = new Tag();
/**
* Model tests for Tag
*/
@Test
- public void testTag() {
+ void testTag() {
// TODO: test Tag
}
@@ -41,7 +40,7 @@ public class TagTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -49,7 +48,7 @@ public class TagTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java
index 8c096c188fc..7ee75c35731 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java
@@ -20,23 +20,23 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for TypeHolderDefault
*/
-public class TypeHolderDefaultTest {
+class TypeHolderDefaultTest {
private final TypeHolderDefault model = new TypeHolderDefault();
/**
* Model tests for TypeHolderDefault
*/
@Test
- public void testTypeHolderDefault() {
+ void testTypeHolderDefault() {
// TODO: test TypeHolderDefault
}
@@ -44,7 +44,7 @@ public class TypeHolderDefaultTest {
* Test the property 'stringItem'
*/
@Test
- public void stringItemTest() {
+ void stringItemTest() {
// TODO: test stringItem
}
@@ -52,7 +52,7 @@ public class TypeHolderDefaultTest {
* Test the property 'numberItem'
*/
@Test
- public void numberItemTest() {
+ void numberItemTest() {
// TODO: test numberItem
}
@@ -60,7 +60,7 @@ public class TypeHolderDefaultTest {
* Test the property 'integerItem'
*/
@Test
- public void integerItemTest() {
+ void integerItemTest() {
// TODO: test integerItem
}
@@ -68,7 +68,7 @@ public class TypeHolderDefaultTest {
* Test the property 'boolItem'
*/
@Test
- public void boolItemTest() {
+ void boolItemTest() {
// TODO: test boolItem
}
@@ -76,7 +76,7 @@ public class TypeHolderDefaultTest {
* Test the property 'arrayItem'
*/
@Test
- public void arrayItemTest() {
+ void arrayItemTest() {
// TODO: test arrayItem
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java
index b1655df6165..5c77882f500 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java
@@ -20,23 +20,23 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for TypeHolderExample
*/
-public class TypeHolderExampleTest {
+class TypeHolderExampleTest {
private final TypeHolderExample model = new TypeHolderExample();
/**
* Model tests for TypeHolderExample
*/
@Test
- public void testTypeHolderExample() {
+ void testTypeHolderExample() {
// TODO: test TypeHolderExample
}
@@ -44,7 +44,7 @@ public class TypeHolderExampleTest {
* Test the property 'stringItem'
*/
@Test
- public void stringItemTest() {
+ void stringItemTest() {
// TODO: test stringItem
}
@@ -52,7 +52,7 @@ public class TypeHolderExampleTest {
* Test the property 'numberItem'
*/
@Test
- public void numberItemTest() {
+ void numberItemTest() {
// TODO: test numberItem
}
@@ -60,7 +60,7 @@ public class TypeHolderExampleTest {
* Test the property 'floatItem'
*/
@Test
- public void floatItemTest() {
+ void floatItemTest() {
// TODO: test floatItem
}
@@ -68,7 +68,7 @@ public class TypeHolderExampleTest {
* Test the property 'integerItem'
*/
@Test
- public void integerItemTest() {
+ void integerItemTest() {
// TODO: test integerItem
}
@@ -76,7 +76,7 @@ public class TypeHolderExampleTest {
* Test the property 'boolItem'
*/
@Test
- public void boolItemTest() {
+ void boolItemTest() {
// TODO: test boolItem
}
@@ -84,7 +84,7 @@ public class TypeHolderExampleTest {
* Test the property 'arrayItem'
*/
@Test
- public void arrayItemTest() {
+ void arrayItemTest() {
// TODO: test arrayItem
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/UserTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/UserTest.java
index e0153a4cf1b..69d274133b9 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/UserTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/UserTest.java
@@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for User
*/
-public class UserTest {
+class UserTest {
private final User model = new User();
/**
* Model tests for User
*/
@Test
- public void testUser() {
+ void testUser() {
// TODO: test User
}
@@ -41,7 +40,7 @@ public class UserTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -49,7 +48,7 @@ public class UserTest {
* Test the property 'username'
*/
@Test
- public void usernameTest() {
+ void usernameTest() {
// TODO: test username
}
@@ -57,7 +56,7 @@ public class UserTest {
* Test the property 'firstName'
*/
@Test
- public void firstNameTest() {
+ void firstNameTest() {
// TODO: test firstName
}
@@ -65,7 +64,7 @@ public class UserTest {
* Test the property 'lastName'
*/
@Test
- public void lastNameTest() {
+ void lastNameTest() {
// TODO: test lastName
}
@@ -73,7 +72,7 @@ public class UserTest {
* Test the property 'email'
*/
@Test
- public void emailTest() {
+ void emailTest() {
// TODO: test email
}
@@ -81,7 +80,7 @@ public class UserTest {
* Test the property 'password'
*/
@Test
- public void passwordTest() {
+ void passwordTest() {
// TODO: test password
}
@@ -89,7 +88,7 @@ public class UserTest {
* Test the property 'phone'
*/
@Test
- public void phoneTest() {
+ void phoneTest() {
// TODO: test phone
}
@@ -97,7 +96,7 @@ public class UserTest {
* Test the property 'userStatus'
*/
@Test
- public void userStatusTest() {
+ void userStatusTest() {
// TODO: test userStatus
}
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/XmlItemTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/XmlItemTest.java
index 4bab95a9126..d2e45fadf56 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/XmlItemTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/model/XmlItemTest.java
@@ -20,23 +20,23 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for XmlItem
*/
-public class XmlItemTest {
+class XmlItemTest {
private final XmlItem model = new XmlItem();
/**
* Model tests for XmlItem
*/
@Test
- public void testXmlItem() {
+ void testXmlItem() {
// TODO: test XmlItem
}
@@ -44,7 +44,7 @@ public class XmlItemTest {
* Test the property 'attributeString'
*/
@Test
- public void attributeStringTest() {
+ void attributeStringTest() {
// TODO: test attributeString
}
@@ -52,7 +52,7 @@ public class XmlItemTest {
* Test the property 'attributeNumber'
*/
@Test
- public void attributeNumberTest() {
+ void attributeNumberTest() {
// TODO: test attributeNumber
}
@@ -60,7 +60,7 @@ public class XmlItemTest {
* Test the property 'attributeInteger'
*/
@Test
- public void attributeIntegerTest() {
+ void attributeIntegerTest() {
// TODO: test attributeInteger
}
@@ -68,7 +68,7 @@ public class XmlItemTest {
* Test the property 'attributeBoolean'
*/
@Test
- public void attributeBooleanTest() {
+ void attributeBooleanTest() {
// TODO: test attributeBoolean
}
@@ -76,7 +76,7 @@ public class XmlItemTest {
* Test the property 'wrappedArray'
*/
@Test
- public void wrappedArrayTest() {
+ void wrappedArrayTest() {
// TODO: test wrappedArray
}
@@ -84,7 +84,7 @@ public class XmlItemTest {
* Test the property 'nameString'
*/
@Test
- public void nameStringTest() {
+ void nameStringTest() {
// TODO: test nameString
}
@@ -92,7 +92,7 @@ public class XmlItemTest {
* Test the property 'nameNumber'
*/
@Test
- public void nameNumberTest() {
+ void nameNumberTest() {
// TODO: test nameNumber
}
@@ -100,7 +100,7 @@ public class XmlItemTest {
* Test the property 'nameInteger'
*/
@Test
- public void nameIntegerTest() {
+ void nameIntegerTest() {
// TODO: test nameInteger
}
@@ -108,7 +108,7 @@ public class XmlItemTest {
* Test the property 'nameBoolean'
*/
@Test
- public void nameBooleanTest() {
+ void nameBooleanTest() {
// TODO: test nameBoolean
}
@@ -116,7 +116,7 @@ public class XmlItemTest {
* Test the property 'nameArray'
*/
@Test
- public void nameArrayTest() {
+ void nameArrayTest() {
// TODO: test nameArray
}
@@ -124,7 +124,7 @@ public class XmlItemTest {
* Test the property 'nameWrappedArray'
*/
@Test
- public void nameWrappedArrayTest() {
+ void nameWrappedArrayTest() {
// TODO: test nameWrappedArray
}
@@ -132,7 +132,7 @@ public class XmlItemTest {
* Test the property 'prefixString'
*/
@Test
- public void prefixStringTest() {
+ void prefixStringTest() {
// TODO: test prefixString
}
@@ -140,7 +140,7 @@ public class XmlItemTest {
* Test the property 'prefixNumber'
*/
@Test
- public void prefixNumberTest() {
+ void prefixNumberTest() {
// TODO: test prefixNumber
}
@@ -148,7 +148,7 @@ public class XmlItemTest {
* Test the property 'prefixInteger'
*/
@Test
- public void prefixIntegerTest() {
+ void prefixIntegerTest() {
// TODO: test prefixInteger
}
@@ -156,7 +156,7 @@ public class XmlItemTest {
* Test the property 'prefixBoolean'
*/
@Test
- public void prefixBooleanTest() {
+ void prefixBooleanTest() {
// TODO: test prefixBoolean
}
@@ -164,7 +164,7 @@ public class XmlItemTest {
* Test the property 'prefixArray'
*/
@Test
- public void prefixArrayTest() {
+ void prefixArrayTest() {
// TODO: test prefixArray
}
@@ -172,7 +172,7 @@ public class XmlItemTest {
* Test the property 'prefixWrappedArray'
*/
@Test
- public void prefixWrappedArrayTest() {
+ void prefixWrappedArrayTest() {
// TODO: test prefixWrappedArray
}
@@ -180,7 +180,7 @@ public class XmlItemTest {
* Test the property 'namespaceString'
*/
@Test
- public void namespaceStringTest() {
+ void namespaceStringTest() {
// TODO: test namespaceString
}
@@ -188,7 +188,7 @@ public class XmlItemTest {
* Test the property 'namespaceNumber'
*/
@Test
- public void namespaceNumberTest() {
+ void namespaceNumberTest() {
// TODO: test namespaceNumber
}
@@ -196,7 +196,7 @@ public class XmlItemTest {
* Test the property 'namespaceInteger'
*/
@Test
- public void namespaceIntegerTest() {
+ void namespaceIntegerTest() {
// TODO: test namespaceInteger
}
@@ -204,7 +204,7 @@ public class XmlItemTest {
* Test the property 'namespaceBoolean'
*/
@Test
- public void namespaceBooleanTest() {
+ void namespaceBooleanTest() {
// TODO: test namespaceBoolean
}
@@ -212,7 +212,7 @@ public class XmlItemTest {
* Test the property 'namespaceArray'
*/
@Test
- public void namespaceArrayTest() {
+ void namespaceArrayTest() {
// TODO: test namespaceArray
}
@@ -220,7 +220,7 @@ public class XmlItemTest {
* Test the property 'namespaceWrappedArray'
*/
@Test
- public void namespaceWrappedArrayTest() {
+ void namespaceWrappedArrayTest() {
// TODO: test namespaceWrappedArray
}
@@ -228,7 +228,7 @@ public class XmlItemTest {
* Test the property 'prefixNsString'
*/
@Test
- public void prefixNsStringTest() {
+ void prefixNsStringTest() {
// TODO: test prefixNsString
}
@@ -236,7 +236,7 @@ public class XmlItemTest {
* Test the property 'prefixNsNumber'
*/
@Test
- public void prefixNsNumberTest() {
+ void prefixNsNumberTest() {
// TODO: test prefixNsNumber
}
@@ -244,7 +244,7 @@ public class XmlItemTest {
* Test the property 'prefixNsInteger'
*/
@Test
- public void prefixNsIntegerTest() {
+ void prefixNsIntegerTest() {
// TODO: test prefixNsInteger
}
@@ -252,7 +252,7 @@ public class XmlItemTest {
* Test the property 'prefixNsBoolean'
*/
@Test
- public void prefixNsBooleanTest() {
+ void prefixNsBooleanTest() {
// TODO: test prefixNsBoolean
}
@@ -260,7 +260,7 @@ public class XmlItemTest {
* Test the property 'prefixNsArray'
*/
@Test
- public void prefixNsArrayTest() {
+ void prefixNsArrayTest() {
// TODO: test prefixNsArray
}
@@ -268,7 +268,7 @@ public class XmlItemTest {
* Test the property 'prefixNsWrappedArray'
*/
@Test
- public void prefixNsWrappedArrayTest() {
+ void prefixNsWrappedArrayTest() {
// TODO: test prefixNsWrappedArray
}
diff --git a/samples/client/petstore/java/rest-assured/build.gradle b/samples/client/petstore/java/rest-assured/build.gradle
index b81ff3e04bb..bf42131b49d 100644
--- a/samples/client/petstore/java/rest-assured/build.gradle
+++ b/samples/client/petstore/java/rest-assured/build.gradle
@@ -98,10 +98,11 @@ if(hasProperty('target') && target == 'android') {
ext {
rest_assured_version = "5.3.2"
- junit_version = "4.13.2"
+ junit_version = "5.10.3"
gson_version = "2.10.1"
gson_fire_version = "1.9.0"
okio_version = "3.6.0"
+ jakarta_annotation_version = "1.3.5"
}
dependencies {
@@ -113,5 +114,5 @@ dependencies {
implementation "jakarta.validation:jakarta.validation-api:3.0.2"
implementation "org.hibernate:hibernate-validator:6.0.19.Final"
implementation "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version"
- testImplementation "junit:junit:$junit_version"
+ testImplementation "org.junit.jupiter:junit-jupiter-api:$junit_version"
}
diff --git a/samples/client/petstore/java/rest-assured/build.sbt b/samples/client/petstore/java/rest-assured/build.sbt
index bc19cbe3820..52d6008056e 100644
--- a/samples/client/petstore/java/rest-assured/build.sbt
+++ b/samples/client/petstore/java/rest-assured/build.sbt
@@ -19,7 +19,7 @@ lazy val root = (project in file(".")).
"jakarta.validation" % "jakarta.validation-api" % "3.0.2" % "compile",
"org.hibernate" % "hibernate-validator" % "6.0.19.Final" % "compile",
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
- "junit" % "junit" % "4.13.2" % "test",
+ "org.junit.jupiter" % "junit-jupiter-api" % "5.10.3" % "test",
"com.novocode" % "junit-interface" % "0.10" % "test"
)
)
diff --git a/samples/client/petstore/java/rest-assured/pom.xml b/samples/client/petstore/java/rest-assured/pom.xml
index cabf0fdd6c4..006eb9f1d8f 100644
--- a/samples/client/petstore/java/rest-assured/pom.xml
+++ b/samples/client/petstore/java/rest-assured/pom.xml
@@ -246,8 +246,8 @@
- junit
- junit
+ org.junit.jupiter
+ junit-jupiter-api
${junit-version}
test
@@ -260,6 +260,6 @@
1.3.5
3.0.2
3.6.0
- 4.13.2
+ 5.10.3
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java
index 11417e240fc..98ae595b408 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java
@@ -14,18 +14,25 @@
package org.openapitools.client.api;
import org.openapitools.client.model.Client;
+import java.util.UUID;
import org.openapitools.client.ApiClient;
import org.openapitools.client.api.AnotherFakeApi;
import io.restassured.builder.RequestSpecBuilder;
import io.restassured.filter.log.ErrorLoggingFilter;
-import org.junit.Before;
-import org.junit.Test;
-import org.junit.Ignore;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
+
+import jakarta.validation.constraints.*;
+import jakarta.validation.Valid;
+
import static io.restassured.config.ObjectMapperConfig.objectMapperConfig;
import static io.restassured.config.RestAssuredConfig.config;
import static org.openapitools.client.GsonObjectMapper.gson;
@@ -33,12 +40,12 @@ import static org.openapitools.client.GsonObjectMapper.gson;
/**
* API tests for AnotherFakeApi
*/
-@Ignore
+@Disabled
public class AnotherFakeApiTest {
private AnotherFakeApi api;
- @Before
+ @BeforeEach
public void createApi() {
api = ApiClient.api(ApiClient.Config.apiConfig().reqSpecSupplier(
() -> new RequestSpecBuilder()
@@ -52,10 +59,12 @@ public class AnotherFakeApiTest {
*/
@Test
public void shouldSee200AfterCall123testSpecialTags() {
+ String uuidTest = null;
Client body = null;
api.call123testSpecialTags()
+ .uuidTestHeader(uuidTest)
.body(body).execute(r -> r.prettyPeek());
// TODO: test validations
}
-}
\ No newline at end of file
+}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/FakeApiTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/FakeApiTest.java
index e248c2155a2..a7abe7c1e75 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/FakeApiTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/FakeApiTest.java
@@ -26,14 +26,20 @@ import org.openapitools.client.ApiClient;
import org.openapitools.client.api.FakeApi;
import io.restassured.builder.RequestSpecBuilder;
import io.restassured.filter.log.ErrorLoggingFilter;
-import org.junit.Before;
-import org.junit.Test;
-import org.junit.Ignore;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
+
+import jakarta.validation.constraints.*;
+import jakarta.validation.Valid;
+
import static io.restassured.config.ObjectMapperConfig.objectMapperConfig;
import static io.restassured.config.RestAssuredConfig.config;
import static org.openapitools.client.GsonObjectMapper.gson;
@@ -41,12 +47,12 @@ import static org.openapitools.client.GsonObjectMapper.gson;
/**
* API tests for FakeApi
*/
-@Ignore
+@Disabled
public class FakeApiTest {
private FakeApi api;
- @Before
+ @BeforeEach
public void createApi() {
api = ApiClient.api(ApiClient.Config.apiConfig().reqSpecSupplier(
() -> new RequestSpecBuilder()
@@ -303,4 +309,4 @@ public class FakeApiTest {
// TODO: test validations
}
-}
\ No newline at end of file
+}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java
index d8fbcab9123..fa03b6cd79b 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java
@@ -18,14 +18,20 @@ import org.openapitools.client.ApiClient;
import org.openapitools.client.api.FakeClassnameTags123Api;
import io.restassured.builder.RequestSpecBuilder;
import io.restassured.filter.log.ErrorLoggingFilter;
-import org.junit.Before;
-import org.junit.Test;
-import org.junit.Ignore;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
+
+import jakarta.validation.constraints.*;
+import jakarta.validation.Valid;
+
import static io.restassured.config.ObjectMapperConfig.objectMapperConfig;
import static io.restassured.config.RestAssuredConfig.config;
import static org.openapitools.client.GsonObjectMapper.gson;
@@ -33,12 +39,12 @@ import static org.openapitools.client.GsonObjectMapper.gson;
/**
* API tests for FakeClassnameTags123Api
*/
-@Ignore
+@Disabled
public class FakeClassnameTags123ApiTest {
private FakeClassnameTags123Api api;
- @Before
+ @BeforeEach
public void createApi() {
api = ApiClient.api(ApiClient.Config.apiConfig().reqSpecSupplier(
() -> new RequestSpecBuilder()
@@ -58,4 +64,4 @@ public class FakeClassnameTags123ApiTest {
// TODO: test validations
}
-}
\ No newline at end of file
+}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/PetApiTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/PetApiTest.java
index 933f5aed2b8..ad4bf4ca0b0 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/PetApiTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/PetApiTest.java
@@ -16,19 +16,24 @@ package org.openapitools.client.api;
import java.io.File;
import org.openapitools.client.model.ModelApiResponse;
import org.openapitools.client.model.Pet;
+import java.util.Set;
import org.openapitools.client.ApiClient;
import org.openapitools.client.api.PetApi;
import io.restassured.builder.RequestSpecBuilder;
import io.restassured.filter.log.ErrorLoggingFilter;
-import org.junit.Before;
-import org.junit.Test;
-import org.junit.Ignore;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
-import java.util.Set;
+
+import jakarta.validation.constraints.*;
+import jakarta.validation.Valid;
import static io.restassured.config.ObjectMapperConfig.objectMapperConfig;
import static io.restassured.config.RestAssuredConfig.config;
@@ -37,12 +42,12 @@ import static org.openapitools.client.GsonObjectMapper.gson;
/**
* API tests for PetApi
*/
-@Ignore
+@Disabled
public class PetApiTest {
private PetApi api;
- @Before
+ @BeforeEach
public void createApi() {
api = ApiClient.api(ApiClient.Config.apiConfig().reqSpecSupplier(
() -> new RequestSpecBuilder()
@@ -245,7 +250,7 @@ public class PetApiTest {
public void shouldSee200AfterUploadFile() {
Long petId = null;
String additionalMetadata = null;
- File file = null;
+ File _file = null;
api.uploadFile()
.petIdPath(petId).execute(r -> r.prettyPeek());
// TODO: test validations
@@ -266,4 +271,4 @@ public class PetApiTest {
// TODO: test validations
}
-}
\ No newline at end of file
+}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/StoreApiTest.java
index b4ca1cc5d74..8463e028240 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -18,14 +18,20 @@ import org.openapitools.client.ApiClient;
import org.openapitools.client.api.StoreApi;
import io.restassured.builder.RequestSpecBuilder;
import io.restassured.filter.log.ErrorLoggingFilter;
-import org.junit.Before;
-import org.junit.Test;
-import org.junit.Ignore;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
+
+import jakarta.validation.constraints.*;
+import jakarta.validation.Valid;
+
import static io.restassured.config.ObjectMapperConfig.objectMapperConfig;
import static io.restassured.config.RestAssuredConfig.config;
import static org.openapitools.client.GsonObjectMapper.gson;
@@ -33,12 +39,12 @@ import static org.openapitools.client.GsonObjectMapper.gson;
/**
* API tests for StoreApi
*/
-@Ignore
+@Disabled
public class StoreApiTest {
private StoreApi api;
- @Before
+ @BeforeEach
public void createApi() {
api = ApiClient.api(ApiClient.Config.apiConfig().reqSpecSupplier(
() -> new RequestSpecBuilder()
@@ -136,4 +142,4 @@ public class StoreApiTest {
// TODO: test validations
}
-}
\ No newline at end of file
+}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/UserApiTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/UserApiTest.java
index b64674d7bf4..cbb964e6209 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/UserApiTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/UserApiTest.java
@@ -13,19 +13,26 @@
package org.openapitools.client.api;
+import java.time.OffsetDateTime;
import org.openapitools.client.model.User;
import org.openapitools.client.ApiClient;
import org.openapitools.client.api.UserApi;
import io.restassured.builder.RequestSpecBuilder;
import io.restassured.filter.log.ErrorLoggingFilter;
-import org.junit.Before;
-import org.junit.Test;
-import org.junit.Ignore;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
+
+import jakarta.validation.constraints.*;
+import jakarta.validation.Valid;
+
import static io.restassured.config.ObjectMapperConfig.objectMapperConfig;
import static io.restassured.config.RestAssuredConfig.config;
import static org.openapitools.client.GsonObjectMapper.gson;
@@ -33,12 +40,12 @@ import static org.openapitools.client.GsonObjectMapper.gson;
/**
* API tests for UserApi
*/
-@Ignore
+@Disabled
public class UserApiTest {
private UserApi api;
- @Before
+ @BeforeEach
public void createApi() {
api = ApiClient.api(ApiClient.Config.apiConfig().reqSpecSupplier(
() -> new RequestSpecBuilder()
@@ -64,7 +71,7 @@ public class UserApiTest {
*/
@Test
public void shouldSee0AfterCreateUsersWithArrayInput() {
- List body = null;
+ List<@Valid User> body = null;
api.createUsersWithArrayInput()
.body(body).execute(r -> r.prettyPeek());
// TODO: test validations
@@ -76,7 +83,7 @@ public class UserApiTest {
*/
@Test
public void shouldSee0AfterCreateUsersWithListInput() {
- List body = null;
+ List<@Valid User> body = null;
api.createUsersWithListInput()
.body(body).execute(r -> r.prettyPeek());
// TODO: test validations
@@ -203,4 +210,4 @@ public class UserApiTest {
// TODO: test validations
}
-}
\ No newline at end of file
+}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java
index 50305c9c365..04fa4f5b6d9 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java
@@ -21,22 +21,21 @@ import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesAnyType
*/
-public class AdditionalPropertiesAnyTypeTest {
+class AdditionalPropertiesAnyTypeTest {
private final AdditionalPropertiesAnyType model = new AdditionalPropertiesAnyType();
/**
* Model tests for AdditionalPropertiesAnyType
*/
@Test
- public void testAdditionalPropertiesAnyType() {
+ void testAdditionalPropertiesAnyType() {
// TODO: test AdditionalPropertiesAnyType
}
@@ -44,7 +43,7 @@ public class AdditionalPropertiesAnyTypeTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java
index d48028727f8..80dc3fcbd43 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java
@@ -22,22 +22,21 @@ import java.io.IOException;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesArray
*/
-public class AdditionalPropertiesArrayTest {
+class AdditionalPropertiesArrayTest {
private final AdditionalPropertiesArray model = new AdditionalPropertiesArray();
/**
* Model tests for AdditionalPropertiesArray
*/
@Test
- public void testAdditionalPropertiesArray() {
+ void testAdditionalPropertiesArray() {
// TODO: test AdditionalPropertiesArray
}
@@ -45,7 +44,7 @@ public class AdditionalPropertiesArrayTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java
index 287c5b053a0..ca1046a0fc8 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java
@@ -21,22 +21,21 @@ import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesBoolean
*/
-public class AdditionalPropertiesBooleanTest {
+class AdditionalPropertiesBooleanTest {
private final AdditionalPropertiesBoolean model = new AdditionalPropertiesBoolean();
/**
* Model tests for AdditionalPropertiesBoolean
*/
@Test
- public void testAdditionalPropertiesBoolean() {
+ void testAdditionalPropertiesBoolean() {
// TODO: test AdditionalPropertiesBoolean
}
@@ -44,7 +43,7 @@ public class AdditionalPropertiesBooleanTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java
index 3363cd409f9..3c34271bf0d 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java
@@ -23,22 +23,21 @@ import java.math.BigDecimal;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesClass
*/
-public class AdditionalPropertiesClassTest {
+class AdditionalPropertiesClassTest {
private final AdditionalPropertiesClass model = new AdditionalPropertiesClass();
/**
* Model tests for AdditionalPropertiesClass
*/
@Test
- public void testAdditionalPropertiesClass() {
+ void testAdditionalPropertiesClass() {
// TODO: test AdditionalPropertiesClass
}
@@ -46,7 +45,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapString'
*/
@Test
- public void mapStringTest() {
+ void mapStringTest() {
// TODO: test mapString
}
@@ -54,7 +53,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapNumber'
*/
@Test
- public void mapNumberTest() {
+ void mapNumberTest() {
// TODO: test mapNumber
}
@@ -62,7 +61,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapInteger'
*/
@Test
- public void mapIntegerTest() {
+ void mapIntegerTest() {
// TODO: test mapInteger
}
@@ -70,7 +69,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapBoolean'
*/
@Test
- public void mapBooleanTest() {
+ void mapBooleanTest() {
// TODO: test mapBoolean
}
@@ -78,7 +77,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapArrayInteger'
*/
@Test
- public void mapArrayIntegerTest() {
+ void mapArrayIntegerTest() {
// TODO: test mapArrayInteger
}
@@ -86,7 +85,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapArrayAnytype'
*/
@Test
- public void mapArrayAnytypeTest() {
+ void mapArrayAnytypeTest() {
// TODO: test mapArrayAnytype
}
@@ -94,7 +93,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapMapString'
*/
@Test
- public void mapMapStringTest() {
+ void mapMapStringTest() {
// TODO: test mapMapString
}
@@ -102,7 +101,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapMapAnytype'
*/
@Test
- public void mapMapAnytypeTest() {
+ void mapMapAnytypeTest() {
// TODO: test mapMapAnytype
}
@@ -110,7 +109,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'anytype1'
*/
@Test
- public void anytype1Test() {
+ void anytype1Test() {
// TODO: test anytype1
}
@@ -118,7 +117,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'anytype2'
*/
@Test
- public void anytype2Test() {
+ void anytype2Test() {
// TODO: test anytype2
}
@@ -126,7 +125,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'anytype3'
*/
@Test
- public void anytype3Test() {
+ void anytype3Test() {
// TODO: test anytype3
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java
index 77d9b6526c5..e9f37e84ecd 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java
@@ -21,22 +21,21 @@ import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesInteger
*/
-public class AdditionalPropertiesIntegerTest {
+class AdditionalPropertiesIntegerTest {
private final AdditionalPropertiesInteger model = new AdditionalPropertiesInteger();
/**
* Model tests for AdditionalPropertiesInteger
*/
@Test
- public void testAdditionalPropertiesInteger() {
+ void testAdditionalPropertiesInteger() {
// TODO: test AdditionalPropertiesInteger
}
@@ -44,7 +43,7 @@ public class AdditionalPropertiesIntegerTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java
index 09113d376a6..3d6ac0eec25 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java
@@ -22,22 +22,21 @@ import java.io.IOException;
import java.math.BigDecimal;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesNumber
*/
-public class AdditionalPropertiesNumberTest {
+class AdditionalPropertiesNumberTest {
private final AdditionalPropertiesNumber model = new AdditionalPropertiesNumber();
/**
* Model tests for AdditionalPropertiesNumber
*/
@Test
- public void testAdditionalPropertiesNumber() {
+ void testAdditionalPropertiesNumber() {
// TODO: test AdditionalPropertiesNumber
}
@@ -45,7 +44,7 @@ public class AdditionalPropertiesNumberTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java
index c5b1e774cc2..47389e5fd54 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java
@@ -21,22 +21,21 @@ import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesObject
*/
-public class AdditionalPropertiesObjectTest {
+class AdditionalPropertiesObjectTest {
private final AdditionalPropertiesObject model = new AdditionalPropertiesObject();
/**
* Model tests for AdditionalPropertiesObject
*/
@Test
- public void testAdditionalPropertiesObject() {
+ void testAdditionalPropertiesObject() {
// TODO: test AdditionalPropertiesObject
}
@@ -44,7 +43,7 @@ public class AdditionalPropertiesObjectTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java
index d7f054fbbd9..162ae6f2edd 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java
@@ -21,22 +21,21 @@ import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesString
*/
-public class AdditionalPropertiesStringTest {
+class AdditionalPropertiesStringTest {
private final AdditionalPropertiesString model = new AdditionalPropertiesString();
/**
* Model tests for AdditionalPropertiesString
*/
@Test
- public void testAdditionalPropertiesString() {
+ void testAdditionalPropertiesString() {
// TODO: test AdditionalPropertiesString
}
@@ -44,7 +43,7 @@ public class AdditionalPropertiesStringTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AnimalTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AnimalTest.java
index 39baa2cbc38..e8508c4319b 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AnimalTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/AnimalTest.java
@@ -19,25 +19,21 @@ import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
-import org.openapitools.client.model.BigCat;
-import org.openapitools.client.model.Cat;
-import org.openapitools.client.model.Dog;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Animal
*/
-public class AnimalTest {
+class AnimalTest {
private final Animal model = new Animal();
/**
* Model tests for Animal
*/
@Test
- public void testAnimal() {
+ void testAnimal() {
// TODO: test Animal
}
@@ -45,7 +41,7 @@ public class AnimalTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -53,7 +49,7 @@ public class AnimalTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java
index 165c1862aee..9d8fb3480f6 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java
@@ -21,23 +21,23 @@ import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayOfArrayOfNumberOnly
*/
-public class ArrayOfArrayOfNumberOnlyTest {
+class ArrayOfArrayOfNumberOnlyTest {
private final ArrayOfArrayOfNumberOnly model = new ArrayOfArrayOfNumberOnly();
/**
* Model tests for ArrayOfArrayOfNumberOnly
*/
@Test
- public void testArrayOfArrayOfNumberOnly() {
+ void testArrayOfArrayOfNumberOnly() {
// TODO: test ArrayOfArrayOfNumberOnly
}
@@ -45,7 +45,7 @@ public class ArrayOfArrayOfNumberOnlyTest {
* Test the property 'arrayArrayNumber'
*/
@Test
- public void arrayArrayNumberTest() {
+ void arrayArrayNumberTest() {
// TODO: test arrayArrayNumber
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java
index 4c5e8b7ef58..ef70479bb3c 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java
@@ -21,23 +21,23 @@ import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayOfNumberOnly
*/
-public class ArrayOfNumberOnlyTest {
+class ArrayOfNumberOnlyTest {
private final ArrayOfNumberOnly model = new ArrayOfNumberOnly();
/**
* Model tests for ArrayOfNumberOnly
*/
@Test
- public void testArrayOfNumberOnly() {
+ void testArrayOfNumberOnly() {
// TODO: test ArrayOfNumberOnly
}
@@ -45,7 +45,7 @@ public class ArrayOfNumberOnlyTest {
* Test the property 'arrayNumber'
*/
@Test
- public void arrayNumberTest() {
+ void arrayNumberTest() {
// TODO: test arrayNumber
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ArrayTestTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ArrayTestTest.java
index eaf7cb8aadf..f5c7ed8752f 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ArrayTestTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ArrayTestTest.java
@@ -20,24 +20,24 @@ import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
import org.openapitools.client.model.ReadOnlyFirst;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayTest
*/
-public class ArrayTestTest {
+class ArrayTestTest {
private final ArrayTest model = new ArrayTest();
/**
* Model tests for ArrayTest
*/
@Test
- public void testArrayTest() {
+ void testArrayTest() {
// TODO: test ArrayTest
}
@@ -45,7 +45,7 @@ public class ArrayTestTest {
* Test the property 'arrayOfString'
*/
@Test
- public void arrayOfStringTest() {
+ void arrayOfStringTest() {
// TODO: test arrayOfString
}
@@ -53,7 +53,7 @@ public class ArrayTestTest {
* Test the property 'arrayArrayOfInteger'
*/
@Test
- public void arrayArrayOfIntegerTest() {
+ void arrayArrayOfIntegerTest() {
// TODO: test arrayArrayOfInteger
}
@@ -61,7 +61,7 @@ public class ArrayTestTest {
* Test the property 'arrayArrayOfModel'
*/
@Test
- public void arrayArrayOfModelTest() {
+ void arrayArrayOfModelTest() {
// TODO: test arrayArrayOfModel
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/BigCatTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/BigCatTest.java
index 0949e1385d8..aa1db2031da 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/BigCatTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/BigCatTest.java
@@ -20,21 +20,21 @@ import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import org.openapitools.client.model.Cat;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for BigCat
*/
-public class BigCatTest {
+class BigCatTest {
private final BigCat model = new BigCat();
/**
* Model tests for BigCat
*/
@Test
- public void testBigCat() {
+ void testBigCat() {
// TODO: test BigCat
}
@@ -42,7 +42,7 @@ public class BigCatTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -50,7 +50,7 @@ public class BigCatTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
@@ -58,7 +58,7 @@ public class BigCatTest {
* Test the property 'declawed'
*/
@Test
- public void declawedTest() {
+ void declawedTest() {
// TODO: test declawed
}
@@ -66,7 +66,7 @@ public class BigCatTest {
* Test the property 'kind'
*/
@Test
- public void kindTest() {
+ void kindTest() {
// TODO: test kind
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/CapitalizationTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/CapitalizationTest.java
index dad32fc0895..eda1830e0c0 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/CapitalizationTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/CapitalizationTest.java
@@ -19,22 +19,21 @@ import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Capitalization
*/
-public class CapitalizationTest {
+class CapitalizationTest {
private final Capitalization model = new Capitalization();
/**
* Model tests for Capitalization
*/
@Test
- public void testCapitalization() {
+ void testCapitalization() {
// TODO: test Capitalization
}
@@ -42,7 +41,7 @@ public class CapitalizationTest {
* Test the property 'smallCamel'
*/
@Test
- public void smallCamelTest() {
+ void smallCamelTest() {
// TODO: test smallCamel
}
@@ -50,7 +49,7 @@ public class CapitalizationTest {
* Test the property 'capitalCamel'
*/
@Test
- public void capitalCamelTest() {
+ void capitalCamelTest() {
// TODO: test capitalCamel
}
@@ -58,7 +57,7 @@ public class CapitalizationTest {
* Test the property 'smallSnake'
*/
@Test
- public void smallSnakeTest() {
+ void smallSnakeTest() {
// TODO: test smallSnake
}
@@ -66,7 +65,7 @@ public class CapitalizationTest {
* Test the property 'capitalSnake'
*/
@Test
- public void capitalSnakeTest() {
+ void capitalSnakeTest() {
// TODO: test capitalSnake
}
@@ -74,7 +73,7 @@ public class CapitalizationTest {
* Test the property 'scAETHFlowPoints'
*/
@Test
- public void scAETHFlowPointsTest() {
+ void scAETHFlowPointsTest() {
// TODO: test scAETHFlowPoints
}
@@ -82,7 +81,7 @@ public class CapitalizationTest {
* Test the property 'ATT_NAME'
*/
@Test
- public void ATT_NAMETest() {
+ void ATT_NAMETest() {
// TODO: test ATT_NAME
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/CatTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/CatTest.java
index f272c0fa92f..6e38fb46e73 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/CatTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/CatTest.java
@@ -20,23 +20,21 @@ import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import org.openapitools.client.model.Animal;
-import org.openapitools.client.model.BigCat;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Cat
*/
-public class CatTest {
+class CatTest {
private final Cat model = new Cat();
/**
* Model tests for Cat
*/
@Test
- public void testCat() {
+ void testCat() {
// TODO: test Cat
}
@@ -44,7 +42,7 @@ public class CatTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -52,7 +50,7 @@ public class CatTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
@@ -60,7 +58,7 @@ public class CatTest {
* Test the property 'declawed'
*/
@Test
- public void declawedTest() {
+ void declawedTest() {
// TODO: test declawed
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/CategoryTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/CategoryTest.java
index 09046fd21c4..4ac631b1e8c 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/CategoryTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/CategoryTest.java
@@ -19,22 +19,21 @@ import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Category
*/
-public class CategoryTest {
+class CategoryTest {
private final Category model = new Category();
/**
* Model tests for Category
*/
@Test
- public void testCategory() {
+ void testCategory() {
// TODO: test Category
}
@@ -42,7 +41,7 @@ public class CategoryTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -50,7 +49,7 @@ public class CategoryTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ClassModelTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ClassModelTest.java
index 6998a0cb766..aa381b709d9 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ClassModelTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ClassModelTest.java
@@ -19,22 +19,21 @@ import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ClassModel
*/
-public class ClassModelTest {
+class ClassModelTest {
private final ClassModel model = new ClassModel();
/**
* Model tests for ClassModel
*/
@Test
- public void testClassModel() {
+ void testClassModel() {
// TODO: test ClassModel
}
@@ -42,7 +41,7 @@ public class ClassModelTest {
* Test the property 'propertyClass'
*/
@Test
- public void propertyClassTest() {
+ void propertyClassTest() {
// TODO: test propertyClass
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ClientTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ClientTest.java
index 103e991a403..95f0e2d39d2 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ClientTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ClientTest.java
@@ -19,22 +19,21 @@ import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Client
*/
-public class ClientTest {
+class ClientTest {
private final Client model = new Client();
/**
* Model tests for Client
*/
@Test
- public void testClient() {
+ void testClient() {
// TODO: test Client
}
@@ -42,7 +41,7 @@ public class ClientTest {
* Test the property 'client'
*/
@Test
- public void clientTest() {
+ void clientTest() {
// TODO: test client
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/DogTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/DogTest.java
index 35c27a3eda0..f65ec9fbebe 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/DogTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/DogTest.java
@@ -20,22 +20,21 @@ import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import org.openapitools.client.model.Animal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Dog
*/
-public class DogTest {
+class DogTest {
private final Dog model = new Dog();
/**
* Model tests for Dog
*/
@Test
- public void testDog() {
+ void testDog() {
// TODO: test Dog
}
@@ -43,7 +42,7 @@ public class DogTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -51,7 +50,7 @@ public class DogTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
@@ -59,7 +58,7 @@ public class DogTest {
* Test the property 'breed'
*/
@Test
- public void breedTest() {
+ void breedTest() {
// TODO: test breed
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/EnumArraysTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/EnumArraysTest.java
index b87e410f963..1175d0a96ec 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/EnumArraysTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/EnumArraysTest.java
@@ -20,23 +20,23 @@ import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for EnumArrays
*/
-public class EnumArraysTest {
+class EnumArraysTest {
private final EnumArrays model = new EnumArrays();
/**
* Model tests for EnumArrays
*/
@Test
- public void testEnumArrays() {
+ void testEnumArrays() {
// TODO: test EnumArrays
}
@@ -44,7 +44,7 @@ public class EnumArraysTest {
* Test the property 'justSymbol'
*/
@Test
- public void justSymbolTest() {
+ void justSymbolTest() {
// TODO: test justSymbol
}
@@ -52,7 +52,7 @@ public class EnumArraysTest {
* Test the property 'arrayEnum'
*/
@Test
- public void arrayEnumTest() {
+ void arrayEnumTest() {
// TODO: test arrayEnum
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/EnumClassTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/EnumClassTest.java
index 329454658e3..cb2a9c69498 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/EnumClassTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/EnumClassTest.java
@@ -14,20 +14,19 @@
package org.openapitools.client.model;
import com.google.gson.annotations.SerializedName;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for EnumClass
*/
-public class EnumClassTest {
+class EnumClassTest {
/**
* Model tests for EnumClass
*/
@Test
- public void testEnumClass() {
+ void testEnumClass() {
// TODO: test EnumClass
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/EnumTestTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/EnumTestTest.java
index 6569d711402..b097f85302d 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/EnumTestTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/EnumTestTest.java
@@ -20,22 +20,21 @@ import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import org.openapitools.client.model.OuterEnum;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for EnumTest
*/
-public class EnumTestTest {
+class EnumTestTest {
private final EnumTest model = new EnumTest();
/**
* Model tests for EnumTest
*/
@Test
- public void testEnumTest() {
+ void testEnumTest() {
// TODO: test EnumTest
}
@@ -43,7 +42,7 @@ public class EnumTestTest {
* Test the property 'enumString'
*/
@Test
- public void enumStringTest() {
+ void enumStringTest() {
// TODO: test enumString
}
@@ -51,7 +50,7 @@ public class EnumTestTest {
* Test the property 'enumStringRequired'
*/
@Test
- public void enumStringRequiredTest() {
+ void enumStringRequiredTest() {
// TODO: test enumStringRequired
}
@@ -59,7 +58,7 @@ public class EnumTestTest {
* Test the property 'enumInteger'
*/
@Test
- public void enumIntegerTest() {
+ void enumIntegerTest() {
// TODO: test enumInteger
}
@@ -67,7 +66,7 @@ public class EnumTestTest {
* Test the property 'enumNumber'
*/
@Test
- public void enumNumberTest() {
+ void enumNumberTest() {
// TODO: test enumNumber
}
@@ -75,7 +74,7 @@ public class EnumTestTest {
* Test the property 'outerEnum'
*/
@Test
- public void outerEnumTest() {
+ void outerEnumTest() {
// TODO: test outerEnum
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java
index 3df1cafc7f9..08d51e19dad 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java
@@ -20,24 +20,24 @@ import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
import org.openapitools.client.model.ModelFile;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for FileSchemaTestClass
*/
-public class FileSchemaTestClassTest {
+class FileSchemaTestClassTest {
private final FileSchemaTestClass model = new FileSchemaTestClass();
/**
* Model tests for FileSchemaTestClass
*/
@Test
- public void testFileSchemaTestClass() {
+ void testFileSchemaTestClass() {
// TODO: test FileSchemaTestClass
}
@@ -45,7 +45,7 @@ public class FileSchemaTestClassTest {
* Test the property '_file'
*/
@Test
- public void _fileTest() {
+ void _fileTest() {
// TODO: test _file
}
@@ -53,7 +53,7 @@ public class FileSchemaTestClassTest {
* Test the property 'files'
*/
@Test
- public void filesTest() {
+ void filesTest() {
// TODO: test files
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/FormatTestTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/FormatTestTest.java
index 24d631e5c6e..bcdcaf9dd06 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/FormatTestTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/FormatTestTest.java
@@ -24,22 +24,21 @@ import java.math.BigDecimal;
import java.time.LocalDate;
import java.time.OffsetDateTime;
import java.util.UUID;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for FormatTest
*/
-public class FormatTestTest {
+class FormatTestTest {
private final FormatTest model = new FormatTest();
/**
* Model tests for FormatTest
*/
@Test
- public void testFormatTest() {
+ void testFormatTest() {
// TODO: test FormatTest
}
@@ -47,7 +46,7 @@ public class FormatTestTest {
* Test the property 'integer'
*/
@Test
- public void integerTest() {
+ void integerTest() {
// TODO: test integer
}
@@ -55,7 +54,7 @@ public class FormatTestTest {
* Test the property 'int32'
*/
@Test
- public void int32Test() {
+ void int32Test() {
// TODO: test int32
}
@@ -63,7 +62,7 @@ public class FormatTestTest {
* Test the property 'int64'
*/
@Test
- public void int64Test() {
+ void int64Test() {
// TODO: test int64
}
@@ -71,7 +70,7 @@ public class FormatTestTest {
* Test the property 'number'
*/
@Test
- public void numberTest() {
+ void numberTest() {
// TODO: test number
}
@@ -79,7 +78,7 @@ public class FormatTestTest {
* Test the property '_float'
*/
@Test
- public void _floatTest() {
+ void _floatTest() {
// TODO: test _float
}
@@ -87,7 +86,7 @@ public class FormatTestTest {
* Test the property '_double'
*/
@Test
- public void _doubleTest() {
+ void _doubleTest() {
// TODO: test _double
}
@@ -95,7 +94,7 @@ public class FormatTestTest {
* Test the property 'string'
*/
@Test
- public void stringTest() {
+ void stringTest() {
// TODO: test string
}
@@ -103,7 +102,7 @@ public class FormatTestTest {
* Test the property '_byte'
*/
@Test
- public void _byteTest() {
+ void _byteTest() {
// TODO: test _byte
}
@@ -111,7 +110,7 @@ public class FormatTestTest {
* Test the property 'binary'
*/
@Test
- public void binaryTest() {
+ void binaryTest() {
// TODO: test binary
}
@@ -119,7 +118,7 @@ public class FormatTestTest {
* Test the property 'date'
*/
@Test
- public void dateTest() {
+ void dateTest() {
// TODO: test date
}
@@ -127,7 +126,7 @@ public class FormatTestTest {
* Test the property 'dateTime'
*/
@Test
- public void dateTimeTest() {
+ void dateTimeTest() {
// TODO: test dateTime
}
@@ -135,7 +134,7 @@ public class FormatTestTest {
* Test the property 'uuid'
*/
@Test
- public void uuidTest() {
+ void uuidTest() {
// TODO: test uuid
}
@@ -143,7 +142,7 @@ public class FormatTestTest {
* Test the property 'password'
*/
@Test
- public void passwordTest() {
+ void passwordTest() {
// TODO: test password
}
@@ -151,7 +150,7 @@ public class FormatTestTest {
* Test the property 'bigDecimal'
*/
@Test
- public void bigDecimalTest() {
+ void bigDecimalTest() {
// TODO: test bigDecimal
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java
index 6da8d8d167e..01be6b15413 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java
@@ -19,22 +19,21 @@ import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for HasOnlyReadOnly
*/
-public class HasOnlyReadOnlyTest {
+class HasOnlyReadOnlyTest {
private final HasOnlyReadOnly model = new HasOnlyReadOnly();
/**
* Model tests for HasOnlyReadOnly
*/
@Test
- public void testHasOnlyReadOnly() {
+ void testHasOnlyReadOnly() {
// TODO: test HasOnlyReadOnly
}
@@ -42,7 +41,7 @@ public class HasOnlyReadOnlyTest {
* Test the property 'bar'
*/
@Test
- public void barTest() {
+ void barTest() {
// TODO: test bar
}
@@ -50,7 +49,7 @@ public class HasOnlyReadOnlyTest {
* Test the property 'foo'
*/
@Test
- public void fooTest() {
+ void fooTest() {
// TODO: test foo
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/MapTestTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/MapTestTest.java
index 038898516fa..d9b643e6b43 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/MapTestTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/MapTestTest.java
@@ -21,22 +21,21 @@ import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for MapTest
*/
-public class MapTestTest {
+class MapTestTest {
private final MapTest model = new MapTest();
/**
* Model tests for MapTest
*/
@Test
- public void testMapTest() {
+ void testMapTest() {
// TODO: test MapTest
}
@@ -44,7 +43,7 @@ public class MapTestTest {
* Test the property 'mapMapOfString'
*/
@Test
- public void mapMapOfStringTest() {
+ void mapMapOfStringTest() {
// TODO: test mapMapOfString
}
@@ -52,7 +51,7 @@ public class MapTestTest {
* Test the property 'mapOfEnumString'
*/
@Test
- public void mapOfEnumStringTest() {
+ void mapOfEnumStringTest() {
// TODO: test mapOfEnumString
}
@@ -60,7 +59,7 @@ public class MapTestTest {
* Test the property 'directMap'
*/
@Test
- public void directMapTest() {
+ void directMapTest() {
// TODO: test directMap
}
@@ -68,7 +67,7 @@ public class MapTestTest {
* Test the property 'indirectMap'
*/
@Test
- public void indirectMapTest() {
+ void indirectMapTest() {
// TODO: test indirectMap
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java
index b0c6aec73ee..0d57da0126e 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java
@@ -24,22 +24,21 @@ import java.util.HashMap;
import java.util.Map;
import java.util.UUID;
import org.openapitools.client.model.Animal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for MixedPropertiesAndAdditionalPropertiesClass
*/
-public class MixedPropertiesAndAdditionalPropertiesClassTest {
+class MixedPropertiesAndAdditionalPropertiesClassTest {
private final MixedPropertiesAndAdditionalPropertiesClass model = new MixedPropertiesAndAdditionalPropertiesClass();
/**
* Model tests for MixedPropertiesAndAdditionalPropertiesClass
*/
@Test
- public void testMixedPropertiesAndAdditionalPropertiesClass() {
+ void testMixedPropertiesAndAdditionalPropertiesClass() {
// TODO: test MixedPropertiesAndAdditionalPropertiesClass
}
@@ -47,7 +46,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'uuid'
*/
@Test
- public void uuidTest() {
+ void uuidTest() {
// TODO: test uuid
}
@@ -55,7 +54,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'dateTime'
*/
@Test
- public void dateTimeTest() {
+ void dateTimeTest() {
// TODO: test dateTime
}
@@ -63,7 +62,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'map'
*/
@Test
- public void mapTest() {
+ void mapTest() {
// TODO: test map
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/Model200ResponseTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/Model200ResponseTest.java
index ad739d2173c..ecae6e0f437 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/Model200ResponseTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/Model200ResponseTest.java
@@ -19,22 +19,21 @@ import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Model200Response
*/
-public class Model200ResponseTest {
+class Model200ResponseTest {
private final Model200Response model = new Model200Response();
/**
* Model tests for Model200Response
*/
@Test
- public void testModel200Response() {
+ void testModel200Response() {
// TODO: test Model200Response
}
@@ -42,7 +41,7 @@ public class Model200ResponseTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
@@ -50,7 +49,7 @@ public class Model200ResponseTest {
* Test the property 'propertyClass'
*/
@Test
- public void propertyClassTest() {
+ void propertyClassTest() {
// TODO: test propertyClass
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java
index 8c57deac712..bb4aa91a78c 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java
@@ -19,22 +19,21 @@ import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelApiResponse
*/
-public class ModelApiResponseTest {
+class ModelApiResponseTest {
private final ModelApiResponse model = new ModelApiResponse();
/**
* Model tests for ModelApiResponse
*/
@Test
- public void testModelApiResponse() {
+ void testModelApiResponse() {
// TODO: test ModelApiResponse
}
@@ -42,7 +41,7 @@ public class ModelApiResponseTest {
* Test the property 'code'
*/
@Test
- public void codeTest() {
+ void codeTest() {
// TODO: test code
}
@@ -50,7 +49,7 @@ public class ModelApiResponseTest {
* Test the property 'type'
*/
@Test
- public void typeTest() {
+ void typeTest() {
// TODO: test type
}
@@ -58,7 +57,7 @@ public class ModelApiResponseTest {
* Test the property 'message'
*/
@Test
- public void messageTest() {
+ void messageTest() {
// TODO: test message
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ModelFileTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ModelFileTest.java
index a40382564ac..973730324cc 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ModelFileTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ModelFileTest.java
@@ -19,22 +19,21 @@ import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelFile
*/
-public class ModelFileTest {
+class ModelFileTest {
private final ModelFile model = new ModelFile();
/**
* Model tests for ModelFile
*/
@Test
- public void testModelFile() {
+ void testModelFile() {
// TODO: test ModelFile
}
@@ -42,7 +41,7 @@ public class ModelFileTest {
* Test the property 'sourceURI'
*/
@Test
- public void sourceURITest() {
+ void sourceURITest() {
// TODO: test sourceURI
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ModelListTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ModelListTest.java
index 8a2d23e90ec..bdba8c46a91 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ModelListTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ModelListTest.java
@@ -19,22 +19,21 @@ import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelList
*/
-public class ModelListTest {
+class ModelListTest {
private final ModelList model = new ModelList();
/**
* Model tests for ModelList
*/
@Test
- public void testModelList() {
+ void testModelList() {
// TODO: test ModelList
}
@@ -42,7 +41,7 @@ public class ModelListTest {
* Test the property '_123list'
*/
@Test
- public void _123listTest() {
+ void _123listTest() {
// TODO: test _123list
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ModelReturnTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ModelReturnTest.java
index 3ec9148deee..ae4eaf6295f 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ModelReturnTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ModelReturnTest.java
@@ -19,22 +19,21 @@ import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelReturn
*/
-public class ModelReturnTest {
+class ModelReturnTest {
private final ModelReturn model = new ModelReturn();
/**
* Model tests for ModelReturn
*/
@Test
- public void testModelReturn() {
+ void testModelReturn() {
// TODO: test ModelReturn
}
@@ -42,7 +41,7 @@ public class ModelReturnTest {
* Test the property '_return'
*/
@Test
- public void _returnTest() {
+ void _returnTest() {
// TODO: test _return
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/NameTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/NameTest.java
index 96201d5a520..f35cf4746e5 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/NameTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/NameTest.java
@@ -19,22 +19,21 @@ import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Name
*/
-public class NameTest {
+class NameTest {
private final Name model = new Name();
/**
* Model tests for Name
*/
@Test
- public void testName() {
+ void testName() {
// TODO: test Name
}
@@ -42,7 +41,7 @@ public class NameTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
@@ -50,7 +49,7 @@ public class NameTest {
* Test the property 'snakeCase'
*/
@Test
- public void snakeCaseTest() {
+ void snakeCaseTest() {
// TODO: test snakeCase
}
@@ -58,7 +57,7 @@ public class NameTest {
* Test the property 'property'
*/
@Test
- public void propertyTest() {
+ void propertyTest() {
// TODO: test property
}
@@ -66,7 +65,7 @@ public class NameTest {
* Test the property '_123number'
*/
@Test
- public void _123numberTest() {
+ void _123numberTest() {
// TODO: test _123number
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/NumberOnlyTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/NumberOnlyTest.java
index 192572d7dca..16ed327afed 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/NumberOnlyTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/NumberOnlyTest.java
@@ -20,22 +20,21 @@ import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.math.BigDecimal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for NumberOnly
*/
-public class NumberOnlyTest {
+class NumberOnlyTest {
private final NumberOnly model = new NumberOnly();
/**
* Model tests for NumberOnly
*/
@Test
- public void testNumberOnly() {
+ void testNumberOnly() {
// TODO: test NumberOnly
}
@@ -43,7 +42,7 @@ public class NumberOnlyTest {
* Test the property 'justNumber'
*/
@Test
- public void justNumberTest() {
+ void justNumberTest() {
// TODO: test justNumber
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/OrderTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/OrderTest.java
index ee9699fba98..439814c48b1 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/OrderTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/OrderTest.java
@@ -20,22 +20,21 @@ import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.time.OffsetDateTime;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Order
*/
-public class OrderTest {
+class OrderTest {
private final Order model = new Order();
/**
* Model tests for Order
*/
@Test
- public void testOrder() {
+ void testOrder() {
// TODO: test Order
}
@@ -43,7 +42,7 @@ public class OrderTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -51,7 +50,7 @@ public class OrderTest {
* Test the property 'petId'
*/
@Test
- public void petIdTest() {
+ void petIdTest() {
// TODO: test petId
}
@@ -59,7 +58,7 @@ public class OrderTest {
* Test the property 'quantity'
*/
@Test
- public void quantityTest() {
+ void quantityTest() {
// TODO: test quantity
}
@@ -67,7 +66,7 @@ public class OrderTest {
* Test the property 'shipDate'
*/
@Test
- public void shipDateTest() {
+ void shipDateTest() {
// TODO: test shipDate
}
@@ -75,7 +74,7 @@ public class OrderTest {
* Test the property 'status'
*/
@Test
- public void statusTest() {
+ void statusTest() {
// TODO: test status
}
@@ -83,7 +82,7 @@ public class OrderTest {
* Test the property 'complete'
*/
@Test
- public void completeTest() {
+ void completeTest() {
// TODO: test complete
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/OuterCompositeTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/OuterCompositeTest.java
index 620678b1cd9..cf76f8e58d0 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/OuterCompositeTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/OuterCompositeTest.java
@@ -20,22 +20,21 @@ import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.math.BigDecimal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for OuterComposite
*/
-public class OuterCompositeTest {
+class OuterCompositeTest {
private final OuterComposite model = new OuterComposite();
/**
* Model tests for OuterComposite
*/
@Test
- public void testOuterComposite() {
+ void testOuterComposite() {
// TODO: test OuterComposite
}
@@ -43,7 +42,7 @@ public class OuterCompositeTest {
* Test the property 'myNumber'
*/
@Test
- public void myNumberTest() {
+ void myNumberTest() {
// TODO: test myNumber
}
@@ -51,7 +50,7 @@ public class OuterCompositeTest {
* Test the property 'myString'
*/
@Test
- public void myStringTest() {
+ void myStringTest() {
// TODO: test myString
}
@@ -59,7 +58,7 @@ public class OuterCompositeTest {
* Test the property 'myBoolean'
*/
@Test
- public void myBooleanTest() {
+ void myBooleanTest() {
// TODO: test myBoolean
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/OuterEnumTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/OuterEnumTest.java
index 220d40e83cb..4110989633b 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/OuterEnumTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/OuterEnumTest.java
@@ -14,20 +14,19 @@
package org.openapitools.client.model;
import com.google.gson.annotations.SerializedName;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for OuterEnum
*/
-public class OuterEnumTest {
+class OuterEnumTest {
/**
* Model tests for OuterEnum
*/
@Test
- public void testOuterEnum() {
+ void testOuterEnum() {
// TODO: test OuterEnum
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/PetTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/PetTest.java
index 13936977f7d..82448ec2368 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/PetTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/PetTest.java
@@ -20,27 +20,27 @@ import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Set;
import org.openapitools.client.model.Category;
import org.openapitools.client.model.Tag;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Pet
*/
-public class PetTest {
+class PetTest {
private final Pet model = new Pet();
/**
* Model tests for Pet
*/
@Test
- public void testPet() {
+ void testPet() {
// TODO: test Pet
}
@@ -48,7 +48,7 @@ public class PetTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -56,7 +56,7 @@ public class PetTest {
* Test the property 'category'
*/
@Test
- public void categoryTest() {
+ void categoryTest() {
// TODO: test category
}
@@ -64,7 +64,7 @@ public class PetTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
@@ -72,7 +72,7 @@ public class PetTest {
* Test the property 'photoUrls'
*/
@Test
- public void photoUrlsTest() {
+ void photoUrlsTest() {
// TODO: test photoUrls
}
@@ -80,7 +80,7 @@ public class PetTest {
* Test the property 'tags'
*/
@Test
- public void tagsTest() {
+ void tagsTest() {
// TODO: test tags
}
@@ -88,7 +88,7 @@ public class PetTest {
* Test the property 'status'
*/
@Test
- public void statusTest() {
+ void statusTest() {
// TODO: test status
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java
index 61bda609f8d..72101f74b61 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java
@@ -19,22 +19,21 @@ import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ReadOnlyFirst
*/
-public class ReadOnlyFirstTest {
+class ReadOnlyFirstTest {
private final ReadOnlyFirst model = new ReadOnlyFirst();
/**
* Model tests for ReadOnlyFirst
*/
@Test
- public void testReadOnlyFirst() {
+ void testReadOnlyFirst() {
// TODO: test ReadOnlyFirst
}
@@ -42,7 +41,7 @@ public class ReadOnlyFirstTest {
* Test the property 'bar'
*/
@Test
- public void barTest() {
+ void barTest() {
// TODO: test bar
}
@@ -50,7 +49,7 @@ public class ReadOnlyFirstTest {
* Test the property 'baz'
*/
@Test
- public void bazTest() {
+ void bazTest() {
// TODO: test baz
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java
index ed82c1fd679..dfc2065188d 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java
@@ -19,22 +19,21 @@ import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for SpecialModelName
*/
-public class SpecialModelNameTest {
+class SpecialModelNameTest {
private final SpecialModelName model = new SpecialModelName();
/**
* Model tests for SpecialModelName
*/
@Test
- public void testSpecialModelName() {
+ void testSpecialModelName() {
// TODO: test SpecialModelName
}
@@ -42,7 +41,7 @@ public class SpecialModelNameTest {
* Test the property '$specialPropertyName'
*/
@Test
- public void $specialPropertyNameTest() {
+ void $specialPropertyNameTest() {
// TODO: test $specialPropertyName
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/TagTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/TagTest.java
index 7ddf73984f2..36eea1ddb7b 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/TagTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/TagTest.java
@@ -19,22 +19,21 @@ import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Tag
*/
-public class TagTest {
+class TagTest {
private final Tag model = new Tag();
/**
* Model tests for Tag
*/
@Test
- public void testTag() {
+ void testTag() {
// TODO: test Tag
}
@@ -42,7 +41,7 @@ public class TagTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -50,7 +49,7 @@ public class TagTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java
index 1561e6bbb3d..3f8ac3d4a3f 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java
@@ -21,23 +21,23 @@ import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for TypeHolderDefault
*/
-public class TypeHolderDefaultTest {
+class TypeHolderDefaultTest {
private final TypeHolderDefault model = new TypeHolderDefault();
/**
* Model tests for TypeHolderDefault
*/
@Test
- public void testTypeHolderDefault() {
+ void testTypeHolderDefault() {
// TODO: test TypeHolderDefault
}
@@ -45,7 +45,7 @@ public class TypeHolderDefaultTest {
* Test the property 'stringItem'
*/
@Test
- public void stringItemTest() {
+ void stringItemTest() {
// TODO: test stringItem
}
@@ -53,7 +53,7 @@ public class TypeHolderDefaultTest {
* Test the property 'numberItem'
*/
@Test
- public void numberItemTest() {
+ void numberItemTest() {
// TODO: test numberItem
}
@@ -61,7 +61,7 @@ public class TypeHolderDefaultTest {
* Test the property 'integerItem'
*/
@Test
- public void integerItemTest() {
+ void integerItemTest() {
// TODO: test integerItem
}
@@ -69,7 +69,7 @@ public class TypeHolderDefaultTest {
* Test the property 'boolItem'
*/
@Test
- public void boolItemTest() {
+ void boolItemTest() {
// TODO: test boolItem
}
@@ -77,7 +77,7 @@ public class TypeHolderDefaultTest {
* Test the property 'arrayItem'
*/
@Test
- public void arrayItemTest() {
+ void arrayItemTest() {
// TODO: test arrayItem
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java
index b369123e981..e0a7a0d614c 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java
@@ -21,23 +21,23 @@ import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for TypeHolderExample
*/
-public class TypeHolderExampleTest {
+class TypeHolderExampleTest {
private final TypeHolderExample model = new TypeHolderExample();
/**
* Model tests for TypeHolderExample
*/
@Test
- public void testTypeHolderExample() {
+ void testTypeHolderExample() {
// TODO: test TypeHolderExample
}
@@ -45,7 +45,7 @@ public class TypeHolderExampleTest {
* Test the property 'stringItem'
*/
@Test
- public void stringItemTest() {
+ void stringItemTest() {
// TODO: test stringItem
}
@@ -53,7 +53,7 @@ public class TypeHolderExampleTest {
* Test the property 'numberItem'
*/
@Test
- public void numberItemTest() {
+ void numberItemTest() {
// TODO: test numberItem
}
@@ -61,7 +61,7 @@ public class TypeHolderExampleTest {
* Test the property 'floatItem'
*/
@Test
- public void floatItemTest() {
+ void floatItemTest() {
// TODO: test floatItem
}
@@ -69,7 +69,7 @@ public class TypeHolderExampleTest {
* Test the property 'integerItem'
*/
@Test
- public void integerItemTest() {
+ void integerItemTest() {
// TODO: test integerItem
}
@@ -77,7 +77,7 @@ public class TypeHolderExampleTest {
* Test the property 'boolItem'
*/
@Test
- public void boolItemTest() {
+ void boolItemTest() {
// TODO: test boolItem
}
@@ -85,7 +85,7 @@ public class TypeHolderExampleTest {
* Test the property 'arrayItem'
*/
@Test
- public void arrayItemTest() {
+ void arrayItemTest() {
// TODO: test arrayItem
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/UserTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/UserTest.java
index 2d4e842d6a3..5163783cfdc 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/UserTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/UserTest.java
@@ -19,22 +19,21 @@ import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for User
*/
-public class UserTest {
+class UserTest {
private final User model = new User();
/**
* Model tests for User
*/
@Test
- public void testUser() {
+ void testUser() {
// TODO: test User
}
@@ -42,7 +41,7 @@ public class UserTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -50,7 +49,7 @@ public class UserTest {
* Test the property 'username'
*/
@Test
- public void usernameTest() {
+ void usernameTest() {
// TODO: test username
}
@@ -58,7 +57,7 @@ public class UserTest {
* Test the property 'firstName'
*/
@Test
- public void firstNameTest() {
+ void firstNameTest() {
// TODO: test firstName
}
@@ -66,7 +65,7 @@ public class UserTest {
* Test the property 'lastName'
*/
@Test
- public void lastNameTest() {
+ void lastNameTest() {
// TODO: test lastName
}
@@ -74,7 +73,7 @@ public class UserTest {
* Test the property 'email'
*/
@Test
- public void emailTest() {
+ void emailTest() {
// TODO: test email
}
@@ -82,7 +81,7 @@ public class UserTest {
* Test the property 'password'
*/
@Test
- public void passwordTest() {
+ void passwordTest() {
// TODO: test password
}
@@ -90,7 +89,7 @@ public class UserTest {
* Test the property 'phone'
*/
@Test
- public void phoneTest() {
+ void phoneTest() {
// TODO: test phone
}
@@ -98,7 +97,7 @@ public class UserTest {
* Test the property 'userStatus'
*/
@Test
- public void userStatusTest() {
+ void userStatusTest() {
// TODO: test userStatus
}
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/XmlItemTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/XmlItemTest.java
index 0476f2f1630..3cfe59d203c 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/XmlItemTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/model/XmlItemTest.java
@@ -21,23 +21,23 @@ import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for XmlItem
*/
-public class XmlItemTest {
+class XmlItemTest {
private final XmlItem model = new XmlItem();
/**
* Model tests for XmlItem
*/
@Test
- public void testXmlItem() {
+ void testXmlItem() {
// TODO: test XmlItem
}
@@ -45,7 +45,7 @@ public class XmlItemTest {
* Test the property 'attributeString'
*/
@Test
- public void attributeStringTest() {
+ void attributeStringTest() {
// TODO: test attributeString
}
@@ -53,7 +53,7 @@ public class XmlItemTest {
* Test the property 'attributeNumber'
*/
@Test
- public void attributeNumberTest() {
+ void attributeNumberTest() {
// TODO: test attributeNumber
}
@@ -61,7 +61,7 @@ public class XmlItemTest {
* Test the property 'attributeInteger'
*/
@Test
- public void attributeIntegerTest() {
+ void attributeIntegerTest() {
// TODO: test attributeInteger
}
@@ -69,7 +69,7 @@ public class XmlItemTest {
* Test the property 'attributeBoolean'
*/
@Test
- public void attributeBooleanTest() {
+ void attributeBooleanTest() {
// TODO: test attributeBoolean
}
@@ -77,7 +77,7 @@ public class XmlItemTest {
* Test the property 'wrappedArray'
*/
@Test
- public void wrappedArrayTest() {
+ void wrappedArrayTest() {
// TODO: test wrappedArray
}
@@ -85,7 +85,7 @@ public class XmlItemTest {
* Test the property 'nameString'
*/
@Test
- public void nameStringTest() {
+ void nameStringTest() {
// TODO: test nameString
}
@@ -93,7 +93,7 @@ public class XmlItemTest {
* Test the property 'nameNumber'
*/
@Test
- public void nameNumberTest() {
+ void nameNumberTest() {
// TODO: test nameNumber
}
@@ -101,7 +101,7 @@ public class XmlItemTest {
* Test the property 'nameInteger'
*/
@Test
- public void nameIntegerTest() {
+ void nameIntegerTest() {
// TODO: test nameInteger
}
@@ -109,7 +109,7 @@ public class XmlItemTest {
* Test the property 'nameBoolean'
*/
@Test
- public void nameBooleanTest() {
+ void nameBooleanTest() {
// TODO: test nameBoolean
}
@@ -117,7 +117,7 @@ public class XmlItemTest {
* Test the property 'nameArray'
*/
@Test
- public void nameArrayTest() {
+ void nameArrayTest() {
// TODO: test nameArray
}
@@ -125,7 +125,7 @@ public class XmlItemTest {
* Test the property 'nameWrappedArray'
*/
@Test
- public void nameWrappedArrayTest() {
+ void nameWrappedArrayTest() {
// TODO: test nameWrappedArray
}
@@ -133,7 +133,7 @@ public class XmlItemTest {
* Test the property 'prefixString'
*/
@Test
- public void prefixStringTest() {
+ void prefixStringTest() {
// TODO: test prefixString
}
@@ -141,7 +141,7 @@ public class XmlItemTest {
* Test the property 'prefixNumber'
*/
@Test
- public void prefixNumberTest() {
+ void prefixNumberTest() {
// TODO: test prefixNumber
}
@@ -149,7 +149,7 @@ public class XmlItemTest {
* Test the property 'prefixInteger'
*/
@Test
- public void prefixIntegerTest() {
+ void prefixIntegerTest() {
// TODO: test prefixInteger
}
@@ -157,7 +157,7 @@ public class XmlItemTest {
* Test the property 'prefixBoolean'
*/
@Test
- public void prefixBooleanTest() {
+ void prefixBooleanTest() {
// TODO: test prefixBoolean
}
@@ -165,7 +165,7 @@ public class XmlItemTest {
* Test the property 'prefixArray'
*/
@Test
- public void prefixArrayTest() {
+ void prefixArrayTest() {
// TODO: test prefixArray
}
@@ -173,7 +173,7 @@ public class XmlItemTest {
* Test the property 'prefixWrappedArray'
*/
@Test
- public void prefixWrappedArrayTest() {
+ void prefixWrappedArrayTest() {
// TODO: test prefixWrappedArray
}
@@ -181,7 +181,7 @@ public class XmlItemTest {
* Test the property 'namespaceString'
*/
@Test
- public void namespaceStringTest() {
+ void namespaceStringTest() {
// TODO: test namespaceString
}
@@ -189,7 +189,7 @@ public class XmlItemTest {
* Test the property 'namespaceNumber'
*/
@Test
- public void namespaceNumberTest() {
+ void namespaceNumberTest() {
// TODO: test namespaceNumber
}
@@ -197,7 +197,7 @@ public class XmlItemTest {
* Test the property 'namespaceInteger'
*/
@Test
- public void namespaceIntegerTest() {
+ void namespaceIntegerTest() {
// TODO: test namespaceInteger
}
@@ -205,7 +205,7 @@ public class XmlItemTest {
* Test the property 'namespaceBoolean'
*/
@Test
- public void namespaceBooleanTest() {
+ void namespaceBooleanTest() {
// TODO: test namespaceBoolean
}
@@ -213,7 +213,7 @@ public class XmlItemTest {
* Test the property 'namespaceArray'
*/
@Test
- public void namespaceArrayTest() {
+ void namespaceArrayTest() {
// TODO: test namespaceArray
}
@@ -221,7 +221,7 @@ public class XmlItemTest {
* Test the property 'namespaceWrappedArray'
*/
@Test
- public void namespaceWrappedArrayTest() {
+ void namespaceWrappedArrayTest() {
// TODO: test namespaceWrappedArray
}
@@ -229,7 +229,7 @@ public class XmlItemTest {
* Test the property 'prefixNsString'
*/
@Test
- public void prefixNsStringTest() {
+ void prefixNsStringTest() {
// TODO: test prefixNsString
}
@@ -237,7 +237,7 @@ public class XmlItemTest {
* Test the property 'prefixNsNumber'
*/
@Test
- public void prefixNsNumberTest() {
+ void prefixNsNumberTest() {
// TODO: test prefixNsNumber
}
@@ -245,7 +245,7 @@ public class XmlItemTest {
* Test the property 'prefixNsInteger'
*/
@Test
- public void prefixNsIntegerTest() {
+ void prefixNsIntegerTest() {
// TODO: test prefixNsInteger
}
@@ -253,7 +253,7 @@ public class XmlItemTest {
* Test the property 'prefixNsBoolean'
*/
@Test
- public void prefixNsBooleanTest() {
+ void prefixNsBooleanTest() {
// TODO: test prefixNsBoolean
}
@@ -261,7 +261,7 @@ public class XmlItemTest {
* Test the property 'prefixNsArray'
*/
@Test
- public void prefixNsArrayTest() {
+ void prefixNsArrayTest() {
// TODO: test prefixNsArray
}
@@ -269,7 +269,7 @@ public class XmlItemTest {
* Test the property 'prefixNsWrappedArray'
*/
@Test
- public void prefixNsWrappedArrayTest() {
+ void prefixNsWrappedArrayTest() {
// TODO: test prefixNsWrappedArray
}
diff --git a/samples/client/petstore/java/retrofit2-play26/build.gradle b/samples/client/petstore/java/retrofit2-play26/build.gradle
index fac37c81556..16873603b03 100644
--- a/samples/client/petstore/java/retrofit2-play26/build.gradle
+++ b/samples/client/petstore/java/retrofit2-play26/build.gradle
@@ -106,7 +106,7 @@ ext {
play_version = "2.6.7"
jakarta_annotation_version = "1.3.5"
swagger_annotations_version = "1.5.22"
- junit_version = "4.13.2"
+ junit_version = "5.10.3"
json_fire_version = "1.9.0"
}
@@ -130,5 +130,5 @@ dependencies {
implementation "org.openapitools:jackson-databind-nullable:$jackson_databind_nullable_version"
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version"
implementation "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version"
- testImplementation "junit:junit:$junit_version"
+ testImplementation "org.junit.jupiter:junit-jupiter-api:$junit_version"
}
diff --git a/samples/client/petstore/java/retrofit2-play26/build.sbt b/samples/client/petstore/java/retrofit2-play26/build.sbt
index 0057176a212..5fd16c7014b 100644
--- a/samples/client/petstore/java/retrofit2-play26/build.sbt
+++ b/samples/client/petstore/java/retrofit2-play26/build.sbt
@@ -21,7 +21,7 @@ lazy val root = (project in file(".")).
"org.apache.oltu.oauth2" % "org.apache.oltu.oauth2.client" % "1.0.1" % "compile",
"io.gsonfire" % "gson-fire" % "1.9.0" % "compile",
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
- "junit" % "junit" % "4.13.2" % "test",
+ "org.junit.jupiter" % "junit-jupiter-api" % "5.10.3" % "test",
"com.novocode" % "junit-interface" % "0.11" % "test"
)
)
diff --git a/samples/client/petstore/java/retrofit2-play26/pom.xml b/samples/client/petstore/java/retrofit2-play26/pom.xml
index f13843c9821..9c926c73279 100644
--- a/samples/client/petstore/java/retrofit2-play26/pom.xml
+++ b/samples/client/petstore/java/retrofit2-play26/pom.xml
@@ -290,8 +290,8 @@
- junit
- junit
+ org.junit.jupiter
+ junit-jupiter-api
${junit-version}
test
@@ -311,6 +311,6 @@
2.1.1
3.0.2
1.0.1
- 4.13.2
+ 5.10.3
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java
index 0307ed17779..575598ee4c2 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java
@@ -1,9 +1,21 @@
package org.openapitools.client.api;
-import org.junit.Before;
-import org.junit.Test;
import org.openapitools.client.ApiClient;
import org.openapitools.client.model.Client;
+import java.util.UUID;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+import jakarta.validation.constraints.*;
+import jakarta.validation.Valid;
/**
* API tests for AnotherFakeApi
@@ -12,7 +24,7 @@ public class AnotherFakeApiTest {
private AnotherFakeApi api;
- @Before
+ @BeforeEach
public void setup() {
api = new ApiClient().createService(AnotherFakeApi.class);
}
@@ -24,8 +36,9 @@ public class AnotherFakeApiTest {
*/
@Test
public void call123testSpecialTagsTest() {
- Client client = null;
- // Client response = api.call123testSpecialTags(client);
+ UUID uuidTest = null;
+ Client body = null;
+ // Client response = api.call123testSpecialTags(uuidTest, body);
// TODO: test validations
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/FakeApiTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/FakeApiTest.java
index 82a96b9818b..20f06e6eb90 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/FakeApiTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/FakeApiTest.java
@@ -9,14 +9,21 @@ import java.time.LocalDate;
import java.time.OffsetDateTime;
import org.openapitools.client.model.OuterComposite;
import org.openapitools.client.model.User;
-import org.junit.Before;
-import org.junit.Test;
+import org.openapitools.client.model.XmlItem;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
+import jakarta.validation.constraints.*;
+import jakarta.validation.Valid;
+
/**
* API tests for FakeApi
*/
@@ -24,11 +31,23 @@ public class FakeApiTest {
private FakeApi api;
- @Before
+ @BeforeEach
public void setup() {
api = new ApiClient().createService(FakeApi.class);
}
+ /**
+ * creates an XmlItem
+ *
+ * this route creates an XmlItem
+ */
+ @Test
+ public void createXmlItemTest() {
+ XmlItem xmlItem = null;
+ // api.createXmlItem(xmlItem);
+
+ // TODO: test validations
+ }
/**
*
*
@@ -48,8 +67,8 @@ public class FakeApiTest {
*/
@Test
public void fakeOuterCompositeSerializeTest() {
- OuterComposite outerComposite = null;
- // OuterComposite response = api.fakeOuterCompositeSerialize(outerComposite);
+ OuterComposite body = null;
+ // OuterComposite response = api.fakeOuterCompositeSerialize(body);
// TODO: test validations
}
@@ -84,8 +103,8 @@ public class FakeApiTest {
*/
@Test
public void testBodyWithFileSchemaTest() {
- FileSchemaTestClass fileSchemaTestClass = null;
- // api.testBodyWithFileSchema(fileSchemaTestClass);
+ FileSchemaTestClass body = null;
+ // api.testBodyWithFileSchema(body);
// TODO: test validations
}
@@ -97,8 +116,8 @@ public class FakeApiTest {
@Test
public void testBodyWithQueryParamsTest() {
String query = null;
- User user = null;
- // api.testBodyWithQueryParams(query, user);
+ User body = null;
+ // api.testBodyWithQueryParams(query, body);
// TODO: test validations
}
@@ -109,15 +128,15 @@ public class FakeApiTest {
*/
@Test
public void testClientModelTest() {
- Client client = null;
- // Client response = api.testClientModel(client);
+ Client body = null;
+ // Client response = api.testClientModel(body);
// TODO: test validations
}
/**
- * Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
+ * Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
*
- * Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
+ * Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
*/
@Test
public void testEndpointParametersTest() {
@@ -182,8 +201,8 @@ public class FakeApiTest {
*/
@Test
public void testInlineAdditionalPropertiesTest() {
- Map requestBody = null;
- // api.testInlineAdditionalProperties(requestBody);
+ Map param = null;
+ // api.testInlineAdditionalProperties(param);
// TODO: test validations
}
@@ -198,6 +217,22 @@ public class FakeApiTest {
String param2 = null;
// api.testJsonFormData(param, param2);
+ // TODO: test validations
+ }
+ /**
+ *
+ *
+ * To test the collection format in query parameters
+ */
+ @Test
+ public void testQueryParameterCollectionFormatTest() {
+ List pipe = null;
+ List ioutil = null;
+ List http = null;
+ List url = null;
+ List context = null;
+ // api.testQueryParameterCollectionFormat(pipe, ioutil, http, url, context);
+
// TODO: test validations
}
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java
index e615576da23..4037ef6fbe8 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java
@@ -1,9 +1,20 @@
package org.openapitools.client.api;
-import org.junit.Before;
-import org.junit.Test;
import org.openapitools.client.ApiClient;
import org.openapitools.client.model.Client;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+import jakarta.validation.constraints.*;
+import jakarta.validation.Valid;
/**
* API tests for FakeClassnameTags123Api
@@ -12,7 +23,7 @@ public class FakeClassnameTags123ApiTest {
private FakeClassnameTags123Api api;
- @Before
+ @BeforeEach
public void setup() {
api = new ApiClient().createService(FakeClassnameTags123Api.class);
}
@@ -24,8 +35,8 @@ public class FakeClassnameTags123ApiTest {
*/
@Test
public void testClassnameTest() {
- Client client = null;
- // Client response = api.testClassname(client);
+ Client body = null;
+ // Client response = api.testClassname(body);
// TODO: test validations
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/PetApiTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/PetApiTest.java
index 9d7a40be314..cc6f0aba773 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/PetApiTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/PetApiTest.java
@@ -1,12 +1,23 @@
package org.openapitools.client.api;
-import org.junit.Before;
-import org.junit.Test;
import org.openapitools.client.ApiClient;
-import org.openapitools.client.model.Pet;
-
import java.io.File;
+import org.openapitools.client.model.ModelApiResponse;
+import org.openapitools.client.model.Pet;
+import java.util.Set;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
+import java.util.ArrayList;
+import java.util.HashMap;
import java.util.List;
+import java.util.Map;
+
+import jakarta.validation.constraints.*;
+import jakarta.validation.Valid;
/**
* API tests for PetApi
@@ -15,7 +26,7 @@ public class PetApiTest {
private PetApi api;
- @Before
+ @BeforeEach
public void setup() {
api = new ApiClient().createService(PetApi.class);
}
@@ -23,19 +34,19 @@ public class PetApiTest {
/**
* Add a new pet to the store
*
- *
+ *
*/
@Test
public void addPetTest() {
- Pet pet = null;
- // api.addPet(pet);
+ Pet body = null;
+ // api.addPet(body);
// TODO: test validations
}
/**
* Deletes a pet
*
- *
+ *
*/
@Test
public void deletePetTest() {
@@ -64,8 +75,8 @@ public class PetApiTest {
*/
@Test
public void findPetsByTagsTest() {
- List tags = null;
- // List response = api.findPetsByTags(tags);
+ Set tags = null;
+ // Set response = api.findPetsByTags(tags);
// TODO: test validations
}
@@ -84,19 +95,19 @@ public class PetApiTest {
/**
* Update an existing pet
*
- *
+ *
*/
@Test
public void updatePetTest() {
- Pet pet = null;
- // api.updatePet(pet);
+ Pet body = null;
+ // api.updatePet(body);
// TODO: test validations
}
/**
* Updates a pet in the store with form data
*
- *
+ *
*/
@Test
public void updatePetWithFormTest() {
@@ -110,21 +121,21 @@ public class PetApiTest {
/**
* uploads an image
*
- *
+ *
*/
@Test
public void uploadFileTest() {
Long petId = null;
String additionalMetadata = null;
- File file = null;
- // ModelApiResponse response = api.uploadFile(petId, additionalMetadata, file);
+ File _file = null;
+ // ModelApiResponse response = api.uploadFile(petId, additionalMetadata, _file);
// TODO: test validations
}
/**
* uploads an image (required)
*
- *
+ *
*/
@Test
public void uploadFileWithRequiredFileTest() {
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/StoreApiTest.java
index 8cb33d8fd16..cb6aefe9459 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -1,9 +1,20 @@
package org.openapitools.client.api;
-import org.junit.Before;
-import org.junit.Test;
import org.openapitools.client.ApiClient;
import org.openapitools.client.model.Order;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
+import java.util.ArrayList;
+import java.util.HashMap;
+import java.util.List;
+import java.util.Map;
+
+import jakarta.validation.constraints.*;
+import jakarta.validation.Valid;
/**
* API tests for StoreApi
@@ -12,7 +23,7 @@ public class StoreApiTest {
private StoreApi api;
- @Before
+ @BeforeEach
public void setup() {
api = new ApiClient().createService(StoreApi.class);
}
@@ -55,12 +66,12 @@ public class StoreApiTest {
/**
* Place an order for a pet
*
- *
+ *
*/
@Test
public void placeOrderTest() {
- Order order = null;
- // Order response = api.placeOrder(order);
+ Order body = null;
+ // Order response = api.placeOrder(body);
// TODO: test validations
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/UserApiTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/UserApiTest.java
index c64cf2a1a68..ab150fabca4 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/UserApiTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/UserApiTest.java
@@ -1,11 +1,21 @@
package org.openapitools.client.api;
-import org.junit.Before;
-import org.junit.Test;
import org.openapitools.client.ApiClient;
+import java.time.OffsetDateTime;
import org.openapitools.client.model.User;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
+import java.util.ArrayList;
+import java.util.HashMap;
import java.util.List;
+import java.util.Map;
+
+import jakarta.validation.constraints.*;
+import jakarta.validation.Valid;
/**
* API tests for UserApi
@@ -14,7 +24,7 @@ public class UserApiTest {
private UserApi api;
- @Before
+ @BeforeEach
public void setup() {
api = new ApiClient().createService(UserApi.class);
}
@@ -26,32 +36,32 @@ public class UserApiTest {
*/
@Test
public void createUserTest() {
- User user = null;
- // api.createUser(user);
+ User body = null;
+ // api.createUser(body);
// TODO: test validations
}
/**
* Creates list of users with given input array
*
- *
+ *
*/
@Test
public void createUsersWithArrayInputTest() {
- List user = null;
- // api.createUsersWithArrayInput(user);
+ List<@Valid User> body = null;
+ // api.createUsersWithArrayInput(body);
// TODO: test validations
}
/**
* Creates list of users with given input array
*
- *
+ *
*/
@Test
public void createUsersWithListInputTest() {
- List user = null;
- // api.createUsersWithListInput(user);
+ List<@Valid User> body = null;
+ // api.createUsersWithListInput(body);
// TODO: test validations
}
@@ -70,7 +80,7 @@ public class UserApiTest {
/**
* Get user by user name
*
- *
+ *
*/
@Test
public void getUserByNameTest() {
@@ -82,7 +92,7 @@ public class UserApiTest {
/**
* Logs user into the system
*
- *
+ *
*/
@Test
public void loginUserTest() {
@@ -95,7 +105,7 @@ public class UserApiTest {
/**
* Logs out current logged in user session
*
- *
+ *
*/
@Test
public void logoutUserTest() {
@@ -111,8 +121,8 @@ public class UserApiTest {
@Test
public void updateUserTest() {
String username = null;
- User user = null;
- // api.updateUser(username, user);
+ User body = null;
+ // api.updateUser(username, body);
// TODO: test validations
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java
index 2b0bd0bbaef..faacb289c17 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,29 +13,28 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesAnyType
*/
-public class AdditionalPropertiesAnyTypeTest {
+class AdditionalPropertiesAnyTypeTest {
private final AdditionalPropertiesAnyType model = new AdditionalPropertiesAnyType();
/**
* Model tests for AdditionalPropertiesAnyType
*/
@Test
- public void testAdditionalPropertiesAnyType() {
+ void testAdditionalPropertiesAnyType() {
// TODO: test AdditionalPropertiesAnyType
}
@@ -43,7 +42,7 @@ public class AdditionalPropertiesAnyTypeTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java
index c6dd88eea82..b506ff7ae92 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,30 +13,29 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesArray
*/
-public class AdditionalPropertiesArrayTest {
+class AdditionalPropertiesArrayTest {
private final AdditionalPropertiesArray model = new AdditionalPropertiesArray();
/**
* Model tests for AdditionalPropertiesArray
*/
@Test
- public void testAdditionalPropertiesArray() {
+ void testAdditionalPropertiesArray() {
// TODO: test AdditionalPropertiesArray
}
@@ -44,7 +43,7 @@ public class AdditionalPropertiesArrayTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java
index 9d474c0dd80..ba65ffedc14 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,29 +13,28 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesBoolean
*/
-public class AdditionalPropertiesBooleanTest {
+class AdditionalPropertiesBooleanTest {
private final AdditionalPropertiesBoolean model = new AdditionalPropertiesBoolean();
/**
* Model tests for AdditionalPropertiesBoolean
*/
@Test
- public void testAdditionalPropertiesBoolean() {
+ void testAdditionalPropertiesBoolean() {
// TODO: test AdditionalPropertiesBoolean
}
@@ -43,7 +42,7 @@ public class AdditionalPropertiesBooleanTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java
index c6bcc988bf9..72854079e5e 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,47 +13,119 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
+import java.math.BigDecimal;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesClass
*/
-public class AdditionalPropertiesClassTest {
+class AdditionalPropertiesClassTest {
private final AdditionalPropertiesClass model = new AdditionalPropertiesClass();
/**
* Model tests for AdditionalPropertiesClass
*/
@Test
- public void testAdditionalPropertiesClass() {
+ void testAdditionalPropertiesClass() {
// TODO: test AdditionalPropertiesClass
}
/**
- * Test the property 'mapProperty'
+ * Test the property 'mapString'
*/
@Test
- public void mapPropertyTest() {
- // TODO: test mapProperty
+ void mapStringTest() {
+ // TODO: test mapString
}
/**
- * Test the property 'mapOfMapProperty'
+ * Test the property 'mapNumber'
*/
@Test
- public void mapOfMapPropertyTest() {
- // TODO: test mapOfMapProperty
+ void mapNumberTest() {
+ // TODO: test mapNumber
+ }
+
+ /**
+ * Test the property 'mapInteger'
+ */
+ @Test
+ void mapIntegerTest() {
+ // TODO: test mapInteger
+ }
+
+ /**
+ * Test the property 'mapBoolean'
+ */
+ @Test
+ void mapBooleanTest() {
+ // TODO: test mapBoolean
+ }
+
+ /**
+ * Test the property 'mapArrayInteger'
+ */
+ @Test
+ void mapArrayIntegerTest() {
+ // TODO: test mapArrayInteger
+ }
+
+ /**
+ * Test the property 'mapArrayAnytype'
+ */
+ @Test
+ void mapArrayAnytypeTest() {
+ // TODO: test mapArrayAnytype
+ }
+
+ /**
+ * Test the property 'mapMapString'
+ */
+ @Test
+ void mapMapStringTest() {
+ // TODO: test mapMapString
+ }
+
+ /**
+ * Test the property 'mapMapAnytype'
+ */
+ @Test
+ void mapMapAnytypeTest() {
+ // TODO: test mapMapAnytype
+ }
+
+ /**
+ * Test the property 'anytype1'
+ */
+ @Test
+ void anytype1Test() {
+ // TODO: test anytype1
+ }
+
+ /**
+ * Test the property 'anytype2'
+ */
+ @Test
+ void anytype2Test() {
+ // TODO: test anytype2
+ }
+
+ /**
+ * Test the property 'anytype3'
+ */
+ @Test
+ void anytype3Test() {
+ // TODO: test anytype3
}
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java
index bf1b1c427b6..916c2c2bcb3 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,29 +13,28 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesInteger
*/
-public class AdditionalPropertiesIntegerTest {
+class AdditionalPropertiesIntegerTest {
private final AdditionalPropertiesInteger model = new AdditionalPropertiesInteger();
/**
* Model tests for AdditionalPropertiesInteger
*/
@Test
- public void testAdditionalPropertiesInteger() {
+ void testAdditionalPropertiesInteger() {
// TODO: test AdditionalPropertiesInteger
}
@@ -43,7 +42,7 @@ public class AdditionalPropertiesIntegerTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java
index b9cb6470e38..a099245eec5 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,30 +13,29 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesNumber
*/
-public class AdditionalPropertiesNumberTest {
+class AdditionalPropertiesNumberTest {
private final AdditionalPropertiesNumber model = new AdditionalPropertiesNumber();
/**
* Model tests for AdditionalPropertiesNumber
*/
@Test
- public void testAdditionalPropertiesNumber() {
+ void testAdditionalPropertiesNumber() {
// TODO: test AdditionalPropertiesNumber
}
@@ -44,7 +43,7 @@ public class AdditionalPropertiesNumberTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java
index 3cbcb8ec3b0..d47c9a37d1f 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,29 +13,28 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesObject
*/
-public class AdditionalPropertiesObjectTest {
+class AdditionalPropertiesObjectTest {
private final AdditionalPropertiesObject model = new AdditionalPropertiesObject();
/**
* Model tests for AdditionalPropertiesObject
*/
@Test
- public void testAdditionalPropertiesObject() {
+ void testAdditionalPropertiesObject() {
// TODO: test AdditionalPropertiesObject
}
@@ -43,7 +42,7 @@ public class AdditionalPropertiesObjectTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java
index 1d3c05075ea..3820dd2e23c 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,29 +13,28 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesString
*/
-public class AdditionalPropertiesStringTest {
+class AdditionalPropertiesStringTest {
private final AdditionalPropertiesString model = new AdditionalPropertiesString();
/**
* Model tests for AdditionalPropertiesString
*/
@Test
- public void testAdditionalPropertiesString() {
+ void testAdditionalPropertiesString() {
// TODO: test AdditionalPropertiesString
}
@@ -43,7 +42,7 @@ public class AdditionalPropertiesStringTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AnimalTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AnimalTest.java
index beb02882b30..24776d3cb51 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AnimalTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/AnimalTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,29 +13,29 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Animal
*/
-public class AnimalTest {
+class AnimalTest {
private final Animal model = new Animal();
/**
* Model tests for Animal
*/
@Test
- public void testAnimal() {
+ void testAnimal() {
// TODO: test Animal
}
@@ -43,7 +43,7 @@ public class AnimalTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -51,7 +51,7 @@ public class AnimalTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java
index ae7970522b1..6bbe877044d 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,30 +13,30 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayOfArrayOfNumberOnly
*/
-public class ArrayOfArrayOfNumberOnlyTest {
+class ArrayOfArrayOfNumberOnlyTest {
private final ArrayOfArrayOfNumberOnly model = new ArrayOfArrayOfNumberOnly();
/**
* Model tests for ArrayOfArrayOfNumberOnly
*/
@Test
- public void testArrayOfArrayOfNumberOnly() {
+ void testArrayOfArrayOfNumberOnly() {
// TODO: test ArrayOfArrayOfNumberOnly
}
@@ -44,7 +44,7 @@ public class ArrayOfArrayOfNumberOnlyTest {
* Test the property 'arrayArrayNumber'
*/
@Test
- public void arrayArrayNumberTest() {
+ void arrayArrayNumberTest() {
// TODO: test arrayArrayNumber
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java
index 6151b7068b7..eaf908bb1ab 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,30 +13,30 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayOfNumberOnly
*/
-public class ArrayOfNumberOnlyTest {
+class ArrayOfNumberOnlyTest {
private final ArrayOfNumberOnly model = new ArrayOfNumberOnly();
/**
* Model tests for ArrayOfNumberOnly
*/
@Test
- public void testArrayOfNumberOnly() {
+ void testArrayOfNumberOnly() {
// TODO: test ArrayOfNumberOnly
}
@@ -44,7 +44,7 @@ public class ArrayOfNumberOnlyTest {
* Test the property 'arrayNumber'
*/
@Test
- public void arrayNumberTest() {
+ void arrayNumberTest() {
// TODO: test arrayNumber
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ArrayTestTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ArrayTestTest.java
index 4bb62b6569a..99c6bcf5360 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ArrayTestTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ArrayTestTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,30 +13,30 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
import org.openapitools.client.model.ReadOnlyFirst;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayTest
*/
-public class ArrayTestTest {
+class ArrayTestTest {
private final ArrayTest model = new ArrayTest();
/**
* Model tests for ArrayTest
*/
@Test
- public void testArrayTest() {
+ void testArrayTest() {
// TODO: test ArrayTest
}
@@ -44,7 +44,7 @@ public class ArrayTestTest {
* Test the property 'arrayOfString'
*/
@Test
- public void arrayOfStringTest() {
+ void arrayOfStringTest() {
// TODO: test arrayOfString
}
@@ -52,7 +52,7 @@ public class ArrayTestTest {
* Test the property 'arrayArrayOfInteger'
*/
@Test
- public void arrayArrayOfIntegerTest() {
+ void arrayArrayOfIntegerTest() {
// TODO: test arrayArrayOfInteger
}
@@ -60,7 +60,7 @@ public class ArrayTestTest {
* Test the property 'arrayArrayOfModel'
*/
@Test
- public void arrayArrayOfModelTest() {
+ void arrayArrayOfModelTest() {
// TODO: test arrayArrayOfModel
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/BigCatTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/BigCatTest.java
index 765bd150512..20bc4e0d424 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/BigCatTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/BigCatTest.java
@@ -22,21 +22,21 @@ import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import org.openapitools.client.model.Cat;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for BigCat
*/
-public class BigCatTest {
+class BigCatTest {
private final BigCat model = new BigCat();
/**
* Model tests for BigCat
*/
@Test
- public void testBigCat() {
+ void testBigCat() {
// TODO: test BigCat
}
@@ -44,7 +44,7 @@ public class BigCatTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -52,7 +52,7 @@ public class BigCatTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
@@ -60,7 +60,7 @@ public class BigCatTest {
* Test the property 'declawed'
*/
@Test
- public void declawedTest() {
+ void declawedTest() {
// TODO: test declawed
}
@@ -68,7 +68,7 @@ public class BigCatTest {
* Test the property 'kind'
*/
@Test
- public void kindTest() {
+ void kindTest() {
// TODO: test kind
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/CapitalizationTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/CapitalizationTest.java
index eae9be7938c..a0217acd1f2 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/CapitalizationTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/CapitalizationTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,27 +13,26 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Capitalization
*/
-public class CapitalizationTest {
+class CapitalizationTest {
private final Capitalization model = new Capitalization();
/**
* Model tests for Capitalization
*/
@Test
- public void testCapitalization() {
+ void testCapitalization() {
// TODO: test Capitalization
}
@@ -41,7 +40,7 @@ public class CapitalizationTest {
* Test the property 'smallCamel'
*/
@Test
- public void smallCamelTest() {
+ void smallCamelTest() {
// TODO: test smallCamel
}
@@ -49,7 +48,7 @@ public class CapitalizationTest {
* Test the property 'capitalCamel'
*/
@Test
- public void capitalCamelTest() {
+ void capitalCamelTest() {
// TODO: test capitalCamel
}
@@ -57,7 +56,7 @@ public class CapitalizationTest {
* Test the property 'smallSnake'
*/
@Test
- public void smallSnakeTest() {
+ void smallSnakeTest() {
// TODO: test smallSnake
}
@@ -65,7 +64,7 @@ public class CapitalizationTest {
* Test the property 'capitalSnake'
*/
@Test
- public void capitalSnakeTest() {
+ void capitalSnakeTest() {
// TODO: test capitalSnake
}
@@ -73,7 +72,7 @@ public class CapitalizationTest {
* Test the property 'scAETHFlowPoints'
*/
@Test
- public void scAETHFlowPointsTest() {
+ void scAETHFlowPointsTest() {
// TODO: test scAETHFlowPoints
}
@@ -81,7 +80,7 @@ public class CapitalizationTest {
* Test the property 'ATT_NAME'
*/
@Test
- public void ATT_NAMETest() {
+ void ATT_NAMETest() {
// TODO: test ATT_NAME
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/CatTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/CatTest.java
index dcb9f2d4cae..1b389a075be 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/CatTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/CatTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,28 +13,30 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonSubTypes;
+import com.fasterxml.jackson.annotation.JsonTypeInfo;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import org.openapitools.client.model.Animal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Cat
*/
-public class CatTest {
+class CatTest {
private final Cat model = new Cat();
/**
* Model tests for Cat
*/
@Test
- public void testCat() {
+ void testCat() {
// TODO: test Cat
}
@@ -42,7 +44,7 @@ public class CatTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -50,7 +52,7 @@ public class CatTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
@@ -58,7 +60,7 @@ public class CatTest {
* Test the property 'declawed'
*/
@Test
- public void declawedTest() {
+ void declawedTest() {
// TODO: test declawed
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/CategoryTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/CategoryTest.java
index 1df27cf0320..22fcbd7f3cc 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/CategoryTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/CategoryTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,27 +13,26 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Category
*/
-public class CategoryTest {
+class CategoryTest {
private final Category model = new Category();
/**
* Model tests for Category
*/
@Test
- public void testCategory() {
+ void testCategory() {
// TODO: test Category
}
@@ -41,7 +40,7 @@ public class CategoryTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -49,7 +48,7 @@ public class CategoryTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ClassModelTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ClassModelTest.java
index 04eb02f835e..6ef5c744fbc 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ClassModelTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ClassModelTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,27 +13,26 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ClassModel
*/
-public class ClassModelTest {
+class ClassModelTest {
private final ClassModel model = new ClassModel();
/**
* Model tests for ClassModel
*/
@Test
- public void testClassModel() {
+ void testClassModel() {
// TODO: test ClassModel
}
@@ -41,7 +40,7 @@ public class ClassModelTest {
* Test the property 'propertyClass'
*/
@Test
- public void propertyClassTest() {
+ void propertyClassTest() {
// TODO: test propertyClass
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ClientTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ClientTest.java
index 03b6bb41a52..8028f11bc2b 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ClientTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ClientTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,27 +13,26 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Client
*/
-public class ClientTest {
+class ClientTest {
private final Client model = new Client();
/**
* Model tests for Client
*/
@Test
- public void testClient() {
+ void testClient() {
// TODO: test Client
}
@@ -41,7 +40,7 @@ public class ClientTest {
* Test the property 'client'
*/
@Test
- public void clientTest() {
+ void clientTest() {
// TODO: test client
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/DogTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/DogTest.java
index 06ac28f804a..b2a12ab4c5e 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/DogTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/DogTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,28 +13,30 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonSubTypes;
+import com.fasterxml.jackson.annotation.JsonTypeInfo;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import org.openapitools.client.model.Animal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Dog
*/
-public class DogTest {
+class DogTest {
private final Dog model = new Dog();
/**
* Model tests for Dog
*/
@Test
- public void testDog() {
+ void testDog() {
// TODO: test Dog
}
@@ -42,7 +44,7 @@ public class DogTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -50,7 +52,7 @@ public class DogTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
@@ -58,7 +60,7 @@ public class DogTest {
* Test the property 'breed'
*/
@Test
- public void breedTest() {
+ void breedTest() {
// TODO: test breed
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/EnumArraysTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/EnumArraysTest.java
index 11b5f01985f..4a755b0d442 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/EnumArraysTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/EnumArraysTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,29 +13,29 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for EnumArrays
*/
-public class EnumArraysTest {
+class EnumArraysTest {
private final EnumArrays model = new EnumArrays();
/**
* Model tests for EnumArrays
*/
@Test
- public void testEnumArrays() {
+ void testEnumArrays() {
// TODO: test EnumArrays
}
@@ -43,7 +43,7 @@ public class EnumArraysTest {
* Test the property 'justSymbol'
*/
@Test
- public void justSymbolTest() {
+ void justSymbolTest() {
// TODO: test justSymbol
}
@@ -51,7 +51,7 @@ public class EnumArraysTest {
* Test the property 'arrayEnum'
*/
@Test
- public void arrayEnumTest() {
+ void arrayEnumTest() {
// TODO: test arrayEnum
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/EnumClassTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/EnumClassTest.java
index cb51ca50c95..48aa1a737fc 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/EnumClassTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/EnumClassTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,20 +13,19 @@
package org.openapitools.client.model;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for EnumClass
*/
-public class EnumClassTest {
+class EnumClassTest {
/**
* Model tests for EnumClass
*/
@Test
- public void testEnumClass() {
+ void testEnumClass() {
// TODO: test EnumClass
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/EnumTestTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/EnumTestTest.java
index 13122a0cb97..b06e3eb195d 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/EnumTestTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/EnumTestTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,28 +13,27 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import org.openapitools.client.model.OuterEnum;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for EnumTest
*/
-public class EnumTestTest {
+class EnumTestTest {
private final EnumTest model = new EnumTest();
/**
* Model tests for EnumTest
*/
@Test
- public void testEnumTest() {
+ void testEnumTest() {
// TODO: test EnumTest
}
@@ -42,7 +41,7 @@ public class EnumTestTest {
* Test the property 'enumString'
*/
@Test
- public void enumStringTest() {
+ void enumStringTest() {
// TODO: test enumString
}
@@ -50,7 +49,7 @@ public class EnumTestTest {
* Test the property 'enumStringRequired'
*/
@Test
- public void enumStringRequiredTest() {
+ void enumStringRequiredTest() {
// TODO: test enumStringRequired
}
@@ -58,7 +57,7 @@ public class EnumTestTest {
* Test the property 'enumInteger'
*/
@Test
- public void enumIntegerTest() {
+ void enumIntegerTest() {
// TODO: test enumInteger
}
@@ -66,7 +65,7 @@ public class EnumTestTest {
* Test the property 'enumNumber'
*/
@Test
- public void enumNumberTest() {
+ void enumNumberTest() {
// TODO: test enumNumber
}
@@ -74,7 +73,7 @@ public class EnumTestTest {
* Test the property 'outerEnum'
*/
@Test
- public void outerEnumTest() {
+ void outerEnumTest() {
// TODO: test outerEnum
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java
index a6b0d8ff7b0..0048cb2c749 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,45 +13,46 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.openapitools.client.model.ModelFile;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for FileSchemaTestClass
*/
-public class FileSchemaTestClassTest {
+class FileSchemaTestClassTest {
private final FileSchemaTestClass model = new FileSchemaTestClass();
/**
* Model tests for FileSchemaTestClass
*/
@Test
- public void testFileSchemaTestClass() {
+ void testFileSchemaTestClass() {
// TODO: test FileSchemaTestClass
}
/**
- * Test the property 'file'
+ * Test the property '_file'
*/
@Test
- public void fileTest() {
- // TODO: test file
+ void _fileTest() {
+ // TODO: test _file
}
/**
* Test the property 'files'
*/
@Test
- public void filesTest() {
+ void filesTest() {
// TODO: test files
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/FormatTestTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/FormatTestTest.java
index 097984bdeac..3060f7f2d56 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/FormatTestTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/FormatTestTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,32 +13,31 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.File;
import java.math.BigDecimal;
-import java.util.UUID;
import java.time.LocalDate;
import java.time.OffsetDateTime;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import java.util.UUID;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for FormatTest
*/
-public class FormatTestTest {
+class FormatTestTest {
private final FormatTest model = new FormatTest();
/**
* Model tests for FormatTest
*/
@Test
- public void testFormatTest() {
+ void testFormatTest() {
// TODO: test FormatTest
}
@@ -46,7 +45,7 @@ public class FormatTestTest {
* Test the property 'integer'
*/
@Test
- public void integerTest() {
+ void integerTest() {
// TODO: test integer
}
@@ -54,7 +53,7 @@ public class FormatTestTest {
* Test the property 'int32'
*/
@Test
- public void int32Test() {
+ void int32Test() {
// TODO: test int32
}
@@ -62,7 +61,7 @@ public class FormatTestTest {
* Test the property 'int64'
*/
@Test
- public void int64Test() {
+ void int64Test() {
// TODO: test int64
}
@@ -70,7 +69,7 @@ public class FormatTestTest {
* Test the property 'number'
*/
@Test
- public void numberTest() {
+ void numberTest() {
// TODO: test number
}
@@ -78,7 +77,7 @@ public class FormatTestTest {
* Test the property '_float'
*/
@Test
- public void _floatTest() {
+ void _floatTest() {
// TODO: test _float
}
@@ -86,7 +85,7 @@ public class FormatTestTest {
* Test the property '_double'
*/
@Test
- public void _doubleTest() {
+ void _doubleTest() {
// TODO: test _double
}
@@ -94,7 +93,7 @@ public class FormatTestTest {
* Test the property 'string'
*/
@Test
- public void stringTest() {
+ void stringTest() {
// TODO: test string
}
@@ -102,7 +101,7 @@ public class FormatTestTest {
* Test the property '_byte'
*/
@Test
- public void _byteTest() {
+ void _byteTest() {
// TODO: test _byte
}
@@ -110,7 +109,7 @@ public class FormatTestTest {
* Test the property 'binary'
*/
@Test
- public void binaryTest() {
+ void binaryTest() {
// TODO: test binary
}
@@ -118,7 +117,7 @@ public class FormatTestTest {
* Test the property 'date'
*/
@Test
- public void dateTest() {
+ void dateTest() {
// TODO: test date
}
@@ -126,7 +125,7 @@ public class FormatTestTest {
* Test the property 'dateTime'
*/
@Test
- public void dateTimeTest() {
+ void dateTimeTest() {
// TODO: test dateTime
}
@@ -134,7 +133,7 @@ public class FormatTestTest {
* Test the property 'uuid'
*/
@Test
- public void uuidTest() {
+ void uuidTest() {
// TODO: test uuid
}
@@ -142,8 +141,16 @@ public class FormatTestTest {
* Test the property 'password'
*/
@Test
- public void passwordTest() {
+ void passwordTest() {
// TODO: test password
}
+ /**
+ * Test the property 'bigDecimal'
+ */
+ @Test
+ void bigDecimalTest() {
+ // TODO: test bigDecimal
+ }
+
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java
index 2c4b2470b98..908f0aff6ed 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,27 +13,26 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for HasOnlyReadOnly
*/
-public class HasOnlyReadOnlyTest {
+class HasOnlyReadOnlyTest {
private final HasOnlyReadOnly model = new HasOnlyReadOnly();
/**
* Model tests for HasOnlyReadOnly
*/
@Test
- public void testHasOnlyReadOnly() {
+ void testHasOnlyReadOnly() {
// TODO: test HasOnlyReadOnly
}
@@ -41,7 +40,7 @@ public class HasOnlyReadOnlyTest {
* Test the property 'bar'
*/
@Test
- public void barTest() {
+ void barTest() {
// TODO: test bar
}
@@ -49,7 +48,7 @@ public class HasOnlyReadOnlyTest {
* Test the property 'foo'
*/
@Test
- public void fooTest() {
+ void fooTest() {
// TODO: test foo
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/MapTestTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/MapTestTest.java
index 0f08d8c88f0..3752c5ba31f 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/MapTestTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/MapTestTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,30 +13,28 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.util.HashMap;
-import java.util.List;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for MapTest
*/
-public class MapTestTest {
+class MapTestTest {
private final MapTest model = new MapTest();
/**
* Model tests for MapTest
*/
@Test
- public void testMapTest() {
+ void testMapTest() {
// TODO: test MapTest
}
@@ -44,7 +42,7 @@ public class MapTestTest {
* Test the property 'mapMapOfString'
*/
@Test
- public void mapMapOfStringTest() {
+ void mapMapOfStringTest() {
// TODO: test mapMapOfString
}
@@ -52,7 +50,7 @@ public class MapTestTest {
* Test the property 'mapOfEnumString'
*/
@Test
- public void mapOfEnumStringTest() {
+ void mapOfEnumStringTest() {
// TODO: test mapOfEnumString
}
@@ -60,7 +58,7 @@ public class MapTestTest {
* Test the property 'directMap'
*/
@Test
- public void directMapTest() {
+ void directMapTest() {
// TODO: test directMap
}
@@ -68,7 +66,7 @@ public class MapTestTest {
* Test the property 'indirectMap'
*/
@Test
- public void indirectMapTest() {
+ void indirectMapTest() {
// TODO: test indirectMap
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java
index 95cd93a316d..0f47e193af8 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,33 +13,31 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
+import java.time.OffsetDateTime;
import java.util.HashMap;
-import java.util.List;
import java.util.Map;
import java.util.UUID;
import org.openapitools.client.model.Animal;
-import java.time.OffsetDateTime;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for MixedPropertiesAndAdditionalPropertiesClass
*/
-public class MixedPropertiesAndAdditionalPropertiesClassTest {
+class MixedPropertiesAndAdditionalPropertiesClassTest {
private final MixedPropertiesAndAdditionalPropertiesClass model = new MixedPropertiesAndAdditionalPropertiesClass();
/**
* Model tests for MixedPropertiesAndAdditionalPropertiesClass
*/
@Test
- public void testMixedPropertiesAndAdditionalPropertiesClass() {
+ void testMixedPropertiesAndAdditionalPropertiesClass() {
// TODO: test MixedPropertiesAndAdditionalPropertiesClass
}
@@ -47,7 +45,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'uuid'
*/
@Test
- public void uuidTest() {
+ void uuidTest() {
// TODO: test uuid
}
@@ -55,7 +53,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'dateTime'
*/
@Test
- public void dateTimeTest() {
+ void dateTimeTest() {
// TODO: test dateTime
}
@@ -63,7 +61,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'map'
*/
@Test
- public void mapTest() {
+ void mapTest() {
// TODO: test map
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/Model200ResponseTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/Model200ResponseTest.java
index 1ad55ca32ea..5743b70142b 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/Model200ResponseTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/Model200ResponseTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,27 +13,26 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Model200Response
*/
-public class Model200ResponseTest {
+class Model200ResponseTest {
private final Model200Response model = new Model200Response();
/**
* Model tests for Model200Response
*/
@Test
- public void testModel200Response() {
+ void testModel200Response() {
// TODO: test Model200Response
}
@@ -41,7 +40,7 @@ public class Model200ResponseTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
@@ -49,7 +48,7 @@ public class Model200ResponseTest {
* Test the property 'propertyClass'
*/
@Test
- public void propertyClassTest() {
+ void propertyClassTest() {
// TODO: test propertyClass
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java
index 73d28676aea..436e4abd59e 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,27 +13,26 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelApiResponse
*/
-public class ModelApiResponseTest {
+class ModelApiResponseTest {
private final ModelApiResponse model = new ModelApiResponse();
/**
* Model tests for ModelApiResponse
*/
@Test
- public void testModelApiResponse() {
+ void testModelApiResponse() {
// TODO: test ModelApiResponse
}
@@ -41,7 +40,7 @@ public class ModelApiResponseTest {
* Test the property 'code'
*/
@Test
- public void codeTest() {
+ void codeTest() {
// TODO: test code
}
@@ -49,7 +48,7 @@ public class ModelApiResponseTest {
* Test the property 'type'
*/
@Test
- public void typeTest() {
+ void typeTest() {
// TODO: test type
}
@@ -57,7 +56,7 @@ public class ModelApiResponseTest {
* Test the property 'message'
*/
@Test
- public void messageTest() {
+ void messageTest() {
// TODO: test message
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ModelFileTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ModelFileTest.java
index 5b3fde28d4b..f128d7b9ac2 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ModelFileTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ModelFileTest.java
@@ -18,24 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelFile
*/
-public class ModelFileTest {
+class ModelFileTest {
private final ModelFile model = new ModelFile();
/**
* Model tests for ModelFile
*/
@Test
- public void testModelFile() {
+ void testModelFile() {
// TODO: test ModelFile
}
@@ -43,7 +40,7 @@ public class ModelFileTest {
* Test the property 'sourceURI'
*/
@Test
- public void sourceURITest() {
+ void sourceURITest() {
// TODO: test sourceURI
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ModelListTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ModelListTest.java
index 36755ee2bd6..92273f48d23 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ModelListTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ModelListTest.java
@@ -18,24 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelList
*/
-public class ModelListTest {
+class ModelListTest {
private final ModelList model = new ModelList();
/**
* Model tests for ModelList
*/
@Test
- public void testModelList() {
+ void testModelList() {
// TODO: test ModelList
}
@@ -43,7 +40,7 @@ public class ModelListTest {
* Test the property '_123list'
*/
@Test
- public void _123listTest() {
+ void _123listTest() {
// TODO: test _123list
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ModelReturnTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ModelReturnTest.java
index b073fda0014..1c5337654cd 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ModelReturnTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ModelReturnTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,27 +13,26 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelReturn
*/
-public class ModelReturnTest {
+class ModelReturnTest {
private final ModelReturn model = new ModelReturn();
/**
* Model tests for ModelReturn
*/
@Test
- public void testModelReturn() {
+ void testModelReturn() {
// TODO: test ModelReturn
}
@@ -41,7 +40,7 @@ public class ModelReturnTest {
* Test the property '_return'
*/
@Test
- public void _returnTest() {
+ void _returnTest() {
// TODO: test _return
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/NameTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/NameTest.java
index e81ebc38e65..1a6aa18fa20 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/NameTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/NameTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,27 +13,26 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Name
*/
-public class NameTest {
+class NameTest {
private final Name model = new Name();
/**
* Model tests for Name
*/
@Test
- public void testName() {
+ void testName() {
// TODO: test Name
}
@@ -41,7 +40,7 @@ public class NameTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
@@ -49,7 +48,7 @@ public class NameTest {
* Test the property 'snakeCase'
*/
@Test
- public void snakeCaseTest() {
+ void snakeCaseTest() {
// TODO: test snakeCase
}
@@ -57,7 +56,7 @@ public class NameTest {
* Test the property 'property'
*/
@Test
- public void propertyTest() {
+ void propertyTest() {
// TODO: test property
}
@@ -65,7 +64,7 @@ public class NameTest {
* Test the property '_123number'
*/
@Test
- public void _123numberTest() {
+ void _123numberTest() {
// TODO: test _123number
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/NumberOnlyTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/NumberOnlyTest.java
index 565c8bd0627..8623386a5e9 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/NumberOnlyTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/NumberOnlyTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,28 +13,27 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for NumberOnly
*/
-public class NumberOnlyTest {
+class NumberOnlyTest {
private final NumberOnly model = new NumberOnly();
/**
* Model tests for NumberOnly
*/
@Test
- public void testNumberOnly() {
+ void testNumberOnly() {
// TODO: test NumberOnly
}
@@ -42,7 +41,7 @@ public class NumberOnlyTest {
* Test the property 'justNumber'
*/
@Test
- public void justNumberTest() {
+ void justNumberTest() {
// TODO: test justNumber
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/OrderTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/OrderTest.java
index d65ce716e13..670c2535646 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/OrderTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/OrderTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,28 +13,27 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.time.OffsetDateTime;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Order
*/
-public class OrderTest {
+class OrderTest {
private final Order model = new Order();
/**
* Model tests for Order
*/
@Test
- public void testOrder() {
+ void testOrder() {
// TODO: test Order
}
@@ -42,7 +41,7 @@ public class OrderTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -50,7 +49,7 @@ public class OrderTest {
* Test the property 'petId'
*/
@Test
- public void petIdTest() {
+ void petIdTest() {
// TODO: test petId
}
@@ -58,7 +57,7 @@ public class OrderTest {
* Test the property 'quantity'
*/
@Test
- public void quantityTest() {
+ void quantityTest() {
// TODO: test quantity
}
@@ -66,7 +65,7 @@ public class OrderTest {
* Test the property 'shipDate'
*/
@Test
- public void shipDateTest() {
+ void shipDateTest() {
// TODO: test shipDate
}
@@ -74,7 +73,7 @@ public class OrderTest {
* Test the property 'status'
*/
@Test
- public void statusTest() {
+ void statusTest() {
// TODO: test status
}
@@ -82,7 +81,7 @@ public class OrderTest {
* Test the property 'complete'
*/
@Test
- public void completeTest() {
+ void completeTest() {
// TODO: test complete
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/OuterCompositeTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/OuterCompositeTest.java
index 49b656a93fa..870a977da94 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/OuterCompositeTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/OuterCompositeTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,28 +13,27 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for OuterComposite
*/
-public class OuterCompositeTest {
+class OuterCompositeTest {
private final OuterComposite model = new OuterComposite();
/**
* Model tests for OuterComposite
*/
@Test
- public void testOuterComposite() {
+ void testOuterComposite() {
// TODO: test OuterComposite
}
@@ -42,7 +41,7 @@ public class OuterCompositeTest {
* Test the property 'myNumber'
*/
@Test
- public void myNumberTest() {
+ void myNumberTest() {
// TODO: test myNumber
}
@@ -50,7 +49,7 @@ public class OuterCompositeTest {
* Test the property 'myString'
*/
@Test
- public void myStringTest() {
+ void myStringTest() {
// TODO: test myString
}
@@ -58,7 +57,7 @@ public class OuterCompositeTest {
* Test the property 'myBoolean'
*/
@Test
- public void myBooleanTest() {
+ void myBooleanTest() {
// TODO: test myBoolean
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/OuterEnumTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/OuterEnumTest.java
index 61154c6d881..0333ee657a0 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/OuterEnumTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/OuterEnumTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,20 +13,19 @@
package org.openapitools.client.model;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for OuterEnum
*/
-public class OuterEnumTest {
+class OuterEnumTest {
/**
* Model tests for OuterEnum
*/
@Test
- public void testOuterEnum() {
+ void testOuterEnum() {
// TODO: test OuterEnum
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/PetTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/PetTest.java
index bf6908e4a45..2e4303f1e4b 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/PetTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/PetTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,31 +13,34 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
+import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.LinkedHashSet;
import java.util.List;
+import java.util.Set;
import org.openapitools.client.model.Category;
import org.openapitools.client.model.Tag;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Pet
*/
-public class PetTest {
+class PetTest {
private final Pet model = new Pet();
/**
* Model tests for Pet
*/
@Test
- public void testPet() {
+ void testPet() {
// TODO: test Pet
}
@@ -45,7 +48,7 @@ public class PetTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -53,7 +56,7 @@ public class PetTest {
* Test the property 'category'
*/
@Test
- public void categoryTest() {
+ void categoryTest() {
// TODO: test category
}
@@ -61,7 +64,7 @@ public class PetTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
@@ -69,7 +72,7 @@ public class PetTest {
* Test the property 'photoUrls'
*/
@Test
- public void photoUrlsTest() {
+ void photoUrlsTest() {
// TODO: test photoUrls
}
@@ -77,7 +80,7 @@ public class PetTest {
* Test the property 'tags'
*/
@Test
- public void tagsTest() {
+ void tagsTest() {
// TODO: test tags
}
@@ -85,7 +88,7 @@ public class PetTest {
* Test the property 'status'
*/
@Test
- public void statusTest() {
+ void statusTest() {
// TODO: test status
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java
index e48b31a39fd..c56da4290fa 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,27 +13,26 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ReadOnlyFirst
*/
-public class ReadOnlyFirstTest {
+class ReadOnlyFirstTest {
private final ReadOnlyFirst model = new ReadOnlyFirst();
/**
* Model tests for ReadOnlyFirst
*/
@Test
- public void testReadOnlyFirst() {
+ void testReadOnlyFirst() {
// TODO: test ReadOnlyFirst
}
@@ -41,7 +40,7 @@ public class ReadOnlyFirstTest {
* Test the property 'bar'
*/
@Test
- public void barTest() {
+ void barTest() {
// TODO: test bar
}
@@ -49,7 +48,7 @@ public class ReadOnlyFirstTest {
* Test the property 'baz'
*/
@Test
- public void bazTest() {
+ void bazTest() {
// TODO: test baz
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java
index 1696eee82da..9501cf722d6 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,27 +13,26 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for SpecialModelName
*/
-public class SpecialModelNameTest {
+class SpecialModelNameTest {
private final SpecialModelName model = new SpecialModelName();
/**
* Model tests for SpecialModelName
*/
@Test
- public void testSpecialModelName() {
+ void testSpecialModelName() {
// TODO: test SpecialModelName
}
@@ -41,7 +40,7 @@ public class SpecialModelNameTest {
* Test the property '$specialPropertyName'
*/
@Test
- public void $specialPropertyNameTest() {
+ void $specialPropertyNameTest() {
// TODO: test $specialPropertyName
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/TagTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/TagTest.java
index b37aca5fdfc..dc9cf9742ef 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/TagTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/TagTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,27 +13,26 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Tag
*/
-public class TagTest {
+class TagTest {
private final Tag model = new Tag();
/**
* Model tests for Tag
*/
@Test
- public void testTag() {
+ void testTag() {
// TODO: test Tag
}
@@ -41,7 +40,7 @@ public class TagTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -49,7 +48,7 @@ public class TagTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java
index 409076e80a3..7ee75c35731 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,30 +13,30 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for TypeHolderDefault
*/
-public class TypeHolderDefaultTest {
+class TypeHolderDefaultTest {
private final TypeHolderDefault model = new TypeHolderDefault();
/**
* Model tests for TypeHolderDefault
*/
@Test
- public void testTypeHolderDefault() {
+ void testTypeHolderDefault() {
// TODO: test TypeHolderDefault
}
@@ -44,7 +44,7 @@ public class TypeHolderDefaultTest {
* Test the property 'stringItem'
*/
@Test
- public void stringItemTest() {
+ void stringItemTest() {
// TODO: test stringItem
}
@@ -52,7 +52,7 @@ public class TypeHolderDefaultTest {
* Test the property 'numberItem'
*/
@Test
- public void numberItemTest() {
+ void numberItemTest() {
// TODO: test numberItem
}
@@ -60,7 +60,7 @@ public class TypeHolderDefaultTest {
* Test the property 'integerItem'
*/
@Test
- public void integerItemTest() {
+ void integerItemTest() {
// TODO: test integerItem
}
@@ -68,7 +68,7 @@ public class TypeHolderDefaultTest {
* Test the property 'boolItem'
*/
@Test
- public void boolItemTest() {
+ void boolItemTest() {
// TODO: test boolItem
}
@@ -76,7 +76,7 @@ public class TypeHolderDefaultTest {
* Test the property 'arrayItem'
*/
@Test
- public void arrayItemTest() {
+ void arrayItemTest() {
// TODO: test arrayItem
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java
index ffd8f3ddc33..5c77882f500 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,30 +13,30 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for TypeHolderExample
*/
-public class TypeHolderExampleTest {
+class TypeHolderExampleTest {
private final TypeHolderExample model = new TypeHolderExample();
/**
* Model tests for TypeHolderExample
*/
@Test
- public void testTypeHolderExample() {
+ void testTypeHolderExample() {
// TODO: test TypeHolderExample
}
@@ -44,7 +44,7 @@ public class TypeHolderExampleTest {
* Test the property 'stringItem'
*/
@Test
- public void stringItemTest() {
+ void stringItemTest() {
// TODO: test stringItem
}
@@ -52,15 +52,23 @@ public class TypeHolderExampleTest {
* Test the property 'numberItem'
*/
@Test
- public void numberItemTest() {
+ void numberItemTest() {
// TODO: test numberItem
}
+ /**
+ * Test the property 'floatItem'
+ */
+ @Test
+ void floatItemTest() {
+ // TODO: test floatItem
+ }
+
/**
* Test the property 'integerItem'
*/
@Test
- public void integerItemTest() {
+ void integerItemTest() {
// TODO: test integerItem
}
@@ -68,7 +76,7 @@ public class TypeHolderExampleTest {
* Test the property 'boolItem'
*/
@Test
- public void boolItemTest() {
+ void boolItemTest() {
// TODO: test boolItem
}
@@ -76,7 +84,7 @@ public class TypeHolderExampleTest {
* Test the property 'arrayItem'
*/
@Test
- public void arrayItemTest() {
+ void arrayItemTest() {
// TODO: test arrayItem
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/UserTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/UserTest.java
index 76733c9e72f..69d274133b9 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/UserTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/UserTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,27 +13,26 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for User
*/
-public class UserTest {
+class UserTest {
private final User model = new User();
/**
* Model tests for User
*/
@Test
- public void testUser() {
+ void testUser() {
// TODO: test User
}
@@ -41,7 +40,7 @@ public class UserTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -49,7 +48,7 @@ public class UserTest {
* Test the property 'username'
*/
@Test
- public void usernameTest() {
+ void usernameTest() {
// TODO: test username
}
@@ -57,7 +56,7 @@ public class UserTest {
* Test the property 'firstName'
*/
@Test
- public void firstNameTest() {
+ void firstNameTest() {
// TODO: test firstName
}
@@ -65,7 +64,7 @@ public class UserTest {
* Test the property 'lastName'
*/
@Test
- public void lastNameTest() {
+ void lastNameTest() {
// TODO: test lastName
}
@@ -73,7 +72,7 @@ public class UserTest {
* Test the property 'email'
*/
@Test
- public void emailTest() {
+ void emailTest() {
// TODO: test email
}
@@ -81,7 +80,7 @@ public class UserTest {
* Test the property 'password'
*/
@Test
- public void passwordTest() {
+ void passwordTest() {
// TODO: test password
}
@@ -89,7 +88,7 @@ public class UserTest {
* Test the property 'phone'
*/
@Test
- public void phoneTest() {
+ void phoneTest() {
// TODO: test phone
}
@@ -97,7 +96,7 @@ public class UserTest {
* Test the property 'userStatus'
*/
@Test
- public void userStatusTest() {
+ void userStatusTest() {
// TODO: test userStatus
}
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/XmlItemTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/XmlItemTest.java
index 55e75391e00..d2e45fadf56 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/XmlItemTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/model/XmlItemTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -13,30 +13,30 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
+import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for XmlItem
*/
-public class XmlItemTest {
+class XmlItemTest {
private final XmlItem model = new XmlItem();
/**
* Model tests for XmlItem
*/
@Test
- public void testXmlItem() {
+ void testXmlItem() {
// TODO: test XmlItem
}
@@ -44,7 +44,7 @@ public class XmlItemTest {
* Test the property 'attributeString'
*/
@Test
- public void attributeStringTest() {
+ void attributeStringTest() {
// TODO: test attributeString
}
@@ -52,7 +52,7 @@ public class XmlItemTest {
* Test the property 'attributeNumber'
*/
@Test
- public void attributeNumberTest() {
+ void attributeNumberTest() {
// TODO: test attributeNumber
}
@@ -60,7 +60,7 @@ public class XmlItemTest {
* Test the property 'attributeInteger'
*/
@Test
- public void attributeIntegerTest() {
+ void attributeIntegerTest() {
// TODO: test attributeInteger
}
@@ -68,7 +68,7 @@ public class XmlItemTest {
* Test the property 'attributeBoolean'
*/
@Test
- public void attributeBooleanTest() {
+ void attributeBooleanTest() {
// TODO: test attributeBoolean
}
@@ -76,7 +76,7 @@ public class XmlItemTest {
* Test the property 'wrappedArray'
*/
@Test
- public void wrappedArrayTest() {
+ void wrappedArrayTest() {
// TODO: test wrappedArray
}
@@ -84,7 +84,7 @@ public class XmlItemTest {
* Test the property 'nameString'
*/
@Test
- public void nameStringTest() {
+ void nameStringTest() {
// TODO: test nameString
}
@@ -92,7 +92,7 @@ public class XmlItemTest {
* Test the property 'nameNumber'
*/
@Test
- public void nameNumberTest() {
+ void nameNumberTest() {
// TODO: test nameNumber
}
@@ -100,7 +100,7 @@ public class XmlItemTest {
* Test the property 'nameInteger'
*/
@Test
- public void nameIntegerTest() {
+ void nameIntegerTest() {
// TODO: test nameInteger
}
@@ -108,7 +108,7 @@ public class XmlItemTest {
* Test the property 'nameBoolean'
*/
@Test
- public void nameBooleanTest() {
+ void nameBooleanTest() {
// TODO: test nameBoolean
}
@@ -116,7 +116,7 @@ public class XmlItemTest {
* Test the property 'nameArray'
*/
@Test
- public void nameArrayTest() {
+ void nameArrayTest() {
// TODO: test nameArray
}
@@ -124,7 +124,7 @@ public class XmlItemTest {
* Test the property 'nameWrappedArray'
*/
@Test
- public void nameWrappedArrayTest() {
+ void nameWrappedArrayTest() {
// TODO: test nameWrappedArray
}
@@ -132,7 +132,7 @@ public class XmlItemTest {
* Test the property 'prefixString'
*/
@Test
- public void prefixStringTest() {
+ void prefixStringTest() {
// TODO: test prefixString
}
@@ -140,7 +140,7 @@ public class XmlItemTest {
* Test the property 'prefixNumber'
*/
@Test
- public void prefixNumberTest() {
+ void prefixNumberTest() {
// TODO: test prefixNumber
}
@@ -148,7 +148,7 @@ public class XmlItemTest {
* Test the property 'prefixInteger'
*/
@Test
- public void prefixIntegerTest() {
+ void prefixIntegerTest() {
// TODO: test prefixInteger
}
@@ -156,7 +156,7 @@ public class XmlItemTest {
* Test the property 'prefixBoolean'
*/
@Test
- public void prefixBooleanTest() {
+ void prefixBooleanTest() {
// TODO: test prefixBoolean
}
@@ -164,7 +164,7 @@ public class XmlItemTest {
* Test the property 'prefixArray'
*/
@Test
- public void prefixArrayTest() {
+ void prefixArrayTest() {
// TODO: test prefixArray
}
@@ -172,7 +172,7 @@ public class XmlItemTest {
* Test the property 'prefixWrappedArray'
*/
@Test
- public void prefixWrappedArrayTest() {
+ void prefixWrappedArrayTest() {
// TODO: test prefixWrappedArray
}
@@ -180,7 +180,7 @@ public class XmlItemTest {
* Test the property 'namespaceString'
*/
@Test
- public void namespaceStringTest() {
+ void namespaceStringTest() {
// TODO: test namespaceString
}
@@ -188,7 +188,7 @@ public class XmlItemTest {
* Test the property 'namespaceNumber'
*/
@Test
- public void namespaceNumberTest() {
+ void namespaceNumberTest() {
// TODO: test namespaceNumber
}
@@ -196,7 +196,7 @@ public class XmlItemTest {
* Test the property 'namespaceInteger'
*/
@Test
- public void namespaceIntegerTest() {
+ void namespaceIntegerTest() {
// TODO: test namespaceInteger
}
@@ -204,7 +204,7 @@ public class XmlItemTest {
* Test the property 'namespaceBoolean'
*/
@Test
- public void namespaceBooleanTest() {
+ void namespaceBooleanTest() {
// TODO: test namespaceBoolean
}
@@ -212,7 +212,7 @@ public class XmlItemTest {
* Test the property 'namespaceArray'
*/
@Test
- public void namespaceArrayTest() {
+ void namespaceArrayTest() {
// TODO: test namespaceArray
}
@@ -220,56 +220,56 @@ public class XmlItemTest {
* Test the property 'namespaceWrappedArray'
*/
@Test
- public void namespaceWrappedArrayTest() {
+ void namespaceWrappedArrayTest() {
// TODO: test namespaceWrappedArray
}
/**
- * Test the property 'prefixNamespaceString'
+ * Test the property 'prefixNsString'
*/
@Test
- public void prefixNamespaceStringTest() {
- // TODO: test prefixNamespaceString
+ void prefixNsStringTest() {
+ // TODO: test prefixNsString
}
/**
- * Test the property 'prefixNamespaceNumber'
+ * Test the property 'prefixNsNumber'
*/
@Test
- public void prefixNamespaceNumberTest() {
- // TODO: test prefixNamespaceNumber
+ void prefixNsNumberTest() {
+ // TODO: test prefixNsNumber
}
/**
- * Test the property 'prefixNamespaceInteger'
+ * Test the property 'prefixNsInteger'
*/
@Test
- public void prefixNamespaceIntegerTest() {
- // TODO: test prefixNamespaceInteger
+ void prefixNsIntegerTest() {
+ // TODO: test prefixNsInteger
}
/**
- * Test the property 'prefixNamespaceBoolean'
+ * Test the property 'prefixNsBoolean'
*/
@Test
- public void prefixNamespaceBooleanTest() {
- // TODO: test prefixNamespaceBoolean
+ void prefixNsBooleanTest() {
+ // TODO: test prefixNsBoolean
}
/**
- * Test the property 'prefixNamespaceArray'
+ * Test the property 'prefixNsArray'
*/
@Test
- public void prefixNamespaceArrayTest() {
- // TODO: test prefixNamespaceArray
+ void prefixNsArrayTest() {
+ // TODO: test prefixNsArray
}
/**
- * Test the property 'prefixNamespaceWrappedArray'
+ * Test the property 'prefixNsWrappedArray'
*/
@Test
- public void prefixNamespaceWrappedArrayTest() {
- // TODO: test prefixNamespaceWrappedArray
+ void prefixNsWrappedArrayTest() {
+ // TODO: test prefixNsWrappedArray
}
}
diff --git a/samples/client/petstore/java/retrofit2/build.gradle b/samples/client/petstore/java/retrofit2/build.gradle
index 1a891a2ef80..d64edfad025 100644
--- a/samples/client/petstore/java/retrofit2/build.gradle
+++ b/samples/client/petstore/java/retrofit2/build.gradle
@@ -101,7 +101,7 @@ ext {
retrofit_version = "2.3.0"
jakarta_annotation_version = "1.3.5"
swagger_annotations_version = "1.5.22"
- junit_version = "4.13.2"
+ junit_version = "5.10.3"
json_fire_version = "1.9.0"
}
@@ -116,5 +116,5 @@ dependencies {
}
implementation "io.gsonfire:gson-fire:$json_fire_version"
implementation "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version"
- testImplementation "junit:junit:$junit_version"
+ testImplementation "org.junit.jupiter:junit-jupiter-api:$junit_version"
}
diff --git a/samples/client/petstore/java/retrofit2/build.sbt b/samples/client/petstore/java/retrofit2/build.sbt
index 1a2ae1ec441..06a3a304b69 100644
--- a/samples/client/petstore/java/retrofit2/build.sbt
+++ b/samples/client/petstore/java/retrofit2/build.sbt
@@ -16,7 +16,7 @@ lazy val root = (project in file(".")).
"org.apache.oltu.oauth2" % "org.apache.oltu.oauth2.client" % "1.0.1" % "compile",
"io.gsonfire" % "gson-fire" % "1.9.0" % "compile",
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
- "junit" % "junit" % "4.13.2" % "test",
+ "org.junit.jupiter" % "junit-jupiter-api" % "5.10.3" % "test",
"com.novocode" % "junit-interface" % "0.11" % "test"
)
)
diff --git a/samples/client/petstore/java/retrofit2/pom.xml b/samples/client/petstore/java/retrofit2/pom.xml
index 27a703dff56..e171f876690 100644
--- a/samples/client/petstore/java/retrofit2/pom.xml
+++ b/samples/client/petstore/java/retrofit2/pom.xml
@@ -249,8 +249,8 @@
- junit
- junit
+ org.junit.jupiter
+ junit-jupiter-api
${junit-version}
test
@@ -265,6 +265,6 @@
2.5.0
1.3.5
1.0.1
- 4.13.2
+ 5.10.3
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java
index 1d45ba717a2..ac000a3d22a 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java
@@ -2,9 +2,13 @@ package org.openapitools.client.api;
import org.openapitools.client.ApiClient;
import org.openapitools.client.model.Client;
-import org.junit.Before;
-import org.junit.Test;
+import java.util.UUID;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
@@ -17,7 +21,7 @@ public class AnotherFakeApiTest {
private AnotherFakeApi api;
- @Before
+ @BeforeEach
public void setup() {
api = new ApiClient().createService(AnotherFakeApi.class);
}
@@ -25,12 +29,13 @@ public class AnotherFakeApiTest {
/**
* To test special tags
*
- * To test special tags
+ * To test special tags and operation ID starting with number
*/
@Test
- public void testSpecialTagsTest() {
- Client client = null;
- // Client response = api.testSpecialTags(client);
+ public void call123testSpecialTagsTest() {
+ UUID uuidTest = null;
+ Client body = null;
+ // Client response = api.call123testSpecialTags(uuidTest, body);
// TODO: test validations
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/FakeApiTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/FakeApiTest.java
index eaff766c5d5..896c594ae92 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/FakeApiTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/FakeApiTest.java
@@ -5,10 +5,14 @@ import java.math.BigDecimal;
import org.openapitools.client.model.Client;
import java.io.File;
import org.openapitools.client.model.FileSchemaTestClass;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import org.openapitools.client.model.OuterComposite;
import org.openapitools.client.model.User;
-import org.junit.Before;
-import org.junit.Test;
+import org.openapitools.client.model.XmlItem;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
import java.time.LocalDate;
import java.time.OffsetDateTime;
@@ -24,11 +28,23 @@ public class FakeApiTest {
private FakeApi api;
- @Before
+ @BeforeEach
public void setup() {
api = new ApiClient().createService(FakeApi.class);
}
+ /**
+ * creates an XmlItem
+ *
+ * this route creates an XmlItem
+ */
+ @Test
+ public void createXmlItemTest() {
+ XmlItem xmlItem = null;
+ // api.createXmlItem(xmlItem);
+
+ // TODO: test validations
+ }
/**
*
*
@@ -48,8 +64,8 @@ public class FakeApiTest {
*/
@Test
public void fakeOuterCompositeSerializeTest() {
- OuterComposite outerComposite = null;
- // OuterComposite response = api.fakeOuterCompositeSerialize(outerComposite);
+ OuterComposite body = null;
+ // OuterComposite response = api.fakeOuterCompositeSerialize(body);
// TODO: test validations
}
@@ -84,8 +100,8 @@ public class FakeApiTest {
*/
@Test
public void testBodyWithFileSchemaTest() {
- FileSchemaTestClass fileSchemaTestClass = null;
- // api.testBodyWithFileSchema(fileSchemaTestClass);
+ FileSchemaTestClass body = null;
+ // api.testBodyWithFileSchema(body);
// TODO: test validations
}
@@ -97,8 +113,8 @@ public class FakeApiTest {
@Test
public void testBodyWithQueryParamsTest() {
String query = null;
- User user = null;
- // api.testBodyWithQueryParams(query, user);
+ User body = null;
+ // api.testBodyWithQueryParams(query, body);
// TODO: test validations
}
@@ -109,15 +125,15 @@ public class FakeApiTest {
*/
@Test
public void testClientModelTest() {
- Client client = null;
- // Client response = api.testClientModel(client);
+ Client body = null;
+ // Client response = api.testClientModel(body);
// TODO: test validations
}
/**
- * Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
+ * Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
*
- * Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
+ * Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
*/
@Test
public void testEndpointParametersTest() {
@@ -182,8 +198,8 @@ public class FakeApiTest {
*/
@Test
public void testInlineAdditionalPropertiesTest() {
- Map requestBody = null;
- // api.testInlineAdditionalProperties(requestBody);
+ Map param = null;
+ // api.testInlineAdditionalProperties(param);
// TODO: test validations
}
@@ -198,6 +214,22 @@ public class FakeApiTest {
String param2 = null;
// api.testJsonFormData(param, param2);
+ // TODO: test validations
+ }
+ /**
+ *
+ *
+ * To test the collection format in query parameters
+ */
+ @Test
+ public void testQueryParameterCollectionFormatTest() {
+ List pipe = null;
+ List ioutil = null;
+ List http = null;
+ List url = null;
+ List context = null;
+ // api.testQueryParameterCollectionFormat(pipe, ioutil, http, url, context);
+
// TODO: test validations
}
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java
index 6e32cc28481..3bde7219918 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java
@@ -2,9 +2,12 @@ package org.openapitools.client.api;
import org.openapitools.client.ApiClient;
import org.openapitools.client.model.Client;
-import org.junit.Before;
-import org.junit.Test;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
@@ -17,7 +20,7 @@ public class FakeClassnameTags123ApiTest {
private FakeClassnameTags123Api api;
- @Before
+ @BeforeEach
public void setup() {
api = new ApiClient().createService(FakeClassnameTags123Api.class);
}
@@ -29,8 +32,8 @@ public class FakeClassnameTags123ApiTest {
*/
@Test
public void testClassnameTest() {
- Client client = null;
- // Client response = api.testClassname(client);
+ Client body = null;
+ // Client response = api.testClassname(body);
// TODO: test validations
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/PetApiTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/PetApiTest.java
index 65eed9391e9..c9cf0ff38e4 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/PetApiTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/PetApiTest.java
@@ -4,9 +4,13 @@ import org.openapitools.client.ApiClient;
import java.io.File;
import org.openapitools.client.model.ModelApiResponse;
import org.openapitools.client.model.Pet;
-import org.junit.Before;
-import org.junit.Test;
+import java.util.Set;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
@@ -19,7 +23,7 @@ public class PetApiTest {
private PetApi api;
- @Before
+ @BeforeEach
public void setup() {
api = new ApiClient().createService(PetApi.class);
}
@@ -31,8 +35,8 @@ public class PetApiTest {
*/
@Test
public void addPetTest() {
- Pet pet = null;
- // api.addPet(pet);
+ Pet body = null;
+ // api.addPet(body);
// TODO: test validations
}
@@ -68,8 +72,8 @@ public class PetApiTest {
*/
@Test
public void findPetsByTagsTest() {
- List tags = null;
- // List response = api.findPetsByTags(tags);
+ Set tags = null;
+ // Set response = api.findPetsByTags(tags);
// TODO: test validations
}
@@ -92,8 +96,8 @@ public class PetApiTest {
*/
@Test
public void updatePetTest() {
- Pet pet = null;
- // api.updatePet(pet);
+ Pet body = null;
+ // api.updatePet(body);
// TODO: test validations
}
@@ -120,8 +124,22 @@ public class PetApiTest {
public void uploadFileTest() {
Long petId = null;
String additionalMetadata = null;
- File file = null;
- // ModelApiResponse response = api.uploadFile(petId, additionalMetadata, file);
+ File _file = null;
+ // ModelApiResponse response = api.uploadFile(petId, additionalMetadata, _file);
+
+ // TODO: test validations
+ }
+ /**
+ * uploads an image (required)
+ *
+ *
+ */
+ @Test
+ public void uploadFileWithRequiredFileTest() {
+ Long petId = null;
+ File requiredFile = null;
+ String additionalMetadata = null;
+ // ModelApiResponse response = api.uploadFileWithRequiredFile(petId, requiredFile, additionalMetadata);
// TODO: test validations
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/StoreApiTest.java
index 2f72f617c3a..3a00aa1b95e 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -2,9 +2,12 @@ package org.openapitools.client.api;
import org.openapitools.client.ApiClient;
import org.openapitools.client.model.Order;
-import org.junit.Before;
-import org.junit.Test;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
@@ -17,7 +20,7 @@ public class StoreApiTest {
private StoreApi api;
- @Before
+ @BeforeEach
public void setup() {
api = new ApiClient().createService(StoreApi.class);
}
@@ -64,8 +67,8 @@ public class StoreApiTest {
*/
@Test
public void placeOrderTest() {
- Order order = null;
- // Order response = api.placeOrder(order);
+ Order body = null;
+ // Order response = api.placeOrder(body);
// TODO: test validations
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/UserApiTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/UserApiTest.java
index 9174f6d0250..a269d4fc6b1 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/UserApiTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/UserApiTest.java
@@ -1,10 +1,14 @@
package org.openapitools.client.api;
import org.openapitools.client.ApiClient;
+import java.time.OffsetDateTime;
import org.openapitools.client.model.User;
-import org.junit.Before;
-import org.junit.Test;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
@@ -17,7 +21,7 @@ public class UserApiTest {
private UserApi api;
- @Before
+ @BeforeEach
public void setup() {
api = new ApiClient().createService(UserApi.class);
}
@@ -29,8 +33,8 @@ public class UserApiTest {
*/
@Test
public void createUserTest() {
- User user = null;
- // api.createUser(user);
+ User body = null;
+ // api.createUser(body);
// TODO: test validations
}
@@ -41,8 +45,8 @@ public class UserApiTest {
*/
@Test
public void createUsersWithArrayInputTest() {
- List user = null;
- // api.createUsersWithArrayInput(user);
+ List body = null;
+ // api.createUsersWithArrayInput(body);
// TODO: test validations
}
@@ -53,8 +57,8 @@ public class UserApiTest {
*/
@Test
public void createUsersWithListInputTest() {
- List user = null;
- // api.createUsersWithListInput(user);
+ List body = null;
+ // api.createUsersWithListInput(body);
// TODO: test validations
}
@@ -114,8 +118,8 @@ public class UserApiTest {
@Test
public void updateUserTest() {
String username = null;
- User user = null;
- // api.updateUser(username, user);
+ User body = null;
+ // api.updateUser(username, body);
// TODO: test validations
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java
index 656f0577161..04fa4f5b6d9 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,27 +18,24 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesAnyType
*/
-public class AdditionalPropertiesAnyTypeTest {
+class AdditionalPropertiesAnyTypeTest {
private final AdditionalPropertiesAnyType model = new AdditionalPropertiesAnyType();
/**
* Model tests for AdditionalPropertiesAnyType
*/
@Test
- public void testAdditionalPropertiesAnyType() {
+ void testAdditionalPropertiesAnyType() {
// TODO: test AdditionalPropertiesAnyType
}
@@ -46,7 +43,7 @@ public class AdditionalPropertiesAnyTypeTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java
index 4c5bdc4ffad..80dc3fcbd43 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,28 +18,25 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesArray
*/
-public class AdditionalPropertiesArrayTest {
+class AdditionalPropertiesArrayTest {
private final AdditionalPropertiesArray model = new AdditionalPropertiesArray();
/**
* Model tests for AdditionalPropertiesArray
*/
@Test
- public void testAdditionalPropertiesArray() {
+ void testAdditionalPropertiesArray() {
// TODO: test AdditionalPropertiesArray
}
@@ -47,7 +44,7 @@ public class AdditionalPropertiesArrayTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java
index de976999c63..ca1046a0fc8 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,27 +18,24 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesBoolean
*/
-public class AdditionalPropertiesBooleanTest {
+class AdditionalPropertiesBooleanTest {
private final AdditionalPropertiesBoolean model = new AdditionalPropertiesBoolean();
/**
* Model tests for AdditionalPropertiesBoolean
*/
@Test
- public void testAdditionalPropertiesBoolean() {
+ void testAdditionalPropertiesBoolean() {
// TODO: test AdditionalPropertiesBoolean
}
@@ -46,7 +43,7 @@ public class AdditionalPropertiesBooleanTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java
index 3c18ad38c7e..3c34271bf0d 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,45 +18,115 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
+import java.math.BigDecimal;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesClass
*/
-public class AdditionalPropertiesClassTest {
+class AdditionalPropertiesClassTest {
private final AdditionalPropertiesClass model = new AdditionalPropertiesClass();
/**
* Model tests for AdditionalPropertiesClass
*/
@Test
- public void testAdditionalPropertiesClass() {
+ void testAdditionalPropertiesClass() {
// TODO: test AdditionalPropertiesClass
}
/**
- * Test the property 'mapProperty'
+ * Test the property 'mapString'
*/
@Test
- public void mapPropertyTest() {
- // TODO: test mapProperty
+ void mapStringTest() {
+ // TODO: test mapString
}
/**
- * Test the property 'mapOfMapProperty'
+ * Test the property 'mapNumber'
*/
@Test
- public void mapOfMapPropertyTest() {
- // TODO: test mapOfMapProperty
+ void mapNumberTest() {
+ // TODO: test mapNumber
+ }
+
+ /**
+ * Test the property 'mapInteger'
+ */
+ @Test
+ void mapIntegerTest() {
+ // TODO: test mapInteger
+ }
+
+ /**
+ * Test the property 'mapBoolean'
+ */
+ @Test
+ void mapBooleanTest() {
+ // TODO: test mapBoolean
+ }
+
+ /**
+ * Test the property 'mapArrayInteger'
+ */
+ @Test
+ void mapArrayIntegerTest() {
+ // TODO: test mapArrayInteger
+ }
+
+ /**
+ * Test the property 'mapArrayAnytype'
+ */
+ @Test
+ void mapArrayAnytypeTest() {
+ // TODO: test mapArrayAnytype
+ }
+
+ /**
+ * Test the property 'mapMapString'
+ */
+ @Test
+ void mapMapStringTest() {
+ // TODO: test mapMapString
+ }
+
+ /**
+ * Test the property 'mapMapAnytype'
+ */
+ @Test
+ void mapMapAnytypeTest() {
+ // TODO: test mapMapAnytype
+ }
+
+ /**
+ * Test the property 'anytype1'
+ */
+ @Test
+ void anytype1Test() {
+ // TODO: test anytype1
+ }
+
+ /**
+ * Test the property 'anytype2'
+ */
+ @Test
+ void anytype2Test() {
+ // TODO: test anytype2
+ }
+
+ /**
+ * Test the property 'anytype3'
+ */
+ @Test
+ void anytype3Test() {
+ // TODO: test anytype3
}
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java
index 712e0c131b1..e9f37e84ecd 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,27 +18,24 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesInteger
*/
-public class AdditionalPropertiesIntegerTest {
+class AdditionalPropertiesIntegerTest {
private final AdditionalPropertiesInteger model = new AdditionalPropertiesInteger();
/**
* Model tests for AdditionalPropertiesInteger
*/
@Test
- public void testAdditionalPropertiesInteger() {
+ void testAdditionalPropertiesInteger() {
// TODO: test AdditionalPropertiesInteger
}
@@ -46,7 +43,7 @@ public class AdditionalPropertiesIntegerTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java
index a2039fa83a5..3d6ac0eec25 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,28 +18,25 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesNumber
*/
-public class AdditionalPropertiesNumberTest {
+class AdditionalPropertiesNumberTest {
private final AdditionalPropertiesNumber model = new AdditionalPropertiesNumber();
/**
* Model tests for AdditionalPropertiesNumber
*/
@Test
- public void testAdditionalPropertiesNumber() {
+ void testAdditionalPropertiesNumber() {
// TODO: test AdditionalPropertiesNumber
}
@@ -47,7 +44,7 @@ public class AdditionalPropertiesNumberTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java
index 3c9fe9323b8..47389e5fd54 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,27 +18,24 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesObject
*/
-public class AdditionalPropertiesObjectTest {
+class AdditionalPropertiesObjectTest {
private final AdditionalPropertiesObject model = new AdditionalPropertiesObject();
/**
* Model tests for AdditionalPropertiesObject
*/
@Test
- public void testAdditionalPropertiesObject() {
+ void testAdditionalPropertiesObject() {
// TODO: test AdditionalPropertiesObject
}
@@ -46,7 +43,7 @@ public class AdditionalPropertiesObjectTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java
index 3a3942ab84d..162ae6f2edd 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,27 +18,24 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesString
*/
-public class AdditionalPropertiesStringTest {
+class AdditionalPropertiesStringTest {
private final AdditionalPropertiesString model = new AdditionalPropertiesString();
/**
* Model tests for AdditionalPropertiesString
*/
@Test
- public void testAdditionalPropertiesString() {
+ void testAdditionalPropertiesString() {
// TODO: test AdditionalPropertiesString
}
@@ -46,7 +43,7 @@ public class AdditionalPropertiesStringTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AnimalTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AnimalTest.java
index 30ed464f5e1..e8508c4319b 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AnimalTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/AnimalTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Animal
*/
-public class AnimalTest {
+class AnimalTest {
private final Animal model = new Animal();
/**
* Model tests for Animal
*/
@Test
- public void testAnimal() {
+ void testAnimal() {
// TODO: test Animal
}
@@ -44,7 +41,7 @@ public class AnimalTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -52,7 +49,7 @@ public class AnimalTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java
index 70947526050..9d8fb3480f6 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,28 +18,26 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayOfArrayOfNumberOnly
*/
-public class ArrayOfArrayOfNumberOnlyTest {
+class ArrayOfArrayOfNumberOnlyTest {
private final ArrayOfArrayOfNumberOnly model = new ArrayOfArrayOfNumberOnly();
/**
* Model tests for ArrayOfArrayOfNumberOnly
*/
@Test
- public void testArrayOfArrayOfNumberOnly() {
+ void testArrayOfArrayOfNumberOnly() {
// TODO: test ArrayOfArrayOfNumberOnly
}
@@ -47,7 +45,7 @@ public class ArrayOfArrayOfNumberOnlyTest {
* Test the property 'arrayArrayNumber'
*/
@Test
- public void arrayArrayNumberTest() {
+ void arrayArrayNumberTest() {
// TODO: test arrayArrayNumber
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java
index 2f88d6ad4b9..ef70479bb3c 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,28 +18,26 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayOfNumberOnly
*/
-public class ArrayOfNumberOnlyTest {
+class ArrayOfNumberOnlyTest {
private final ArrayOfNumberOnly model = new ArrayOfNumberOnly();
/**
* Model tests for ArrayOfNumberOnly
*/
@Test
- public void testArrayOfNumberOnly() {
+ void testArrayOfNumberOnly() {
// TODO: test ArrayOfNumberOnly
}
@@ -47,7 +45,7 @@ public class ArrayOfNumberOnlyTest {
* Test the property 'arrayNumber'
*/
@Test
- public void arrayNumberTest() {
+ void arrayNumberTest() {
// TODO: test arrayNumber
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ArrayTestTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ArrayTestTest.java
index 3182aa65481..f5c7ed8752f 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ArrayTestTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ArrayTestTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,28 +18,26 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
import org.openapitools.client.model.ReadOnlyFirst;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayTest
*/
-public class ArrayTestTest {
+class ArrayTestTest {
private final ArrayTest model = new ArrayTest();
/**
* Model tests for ArrayTest
*/
@Test
- public void testArrayTest() {
+ void testArrayTest() {
// TODO: test ArrayTest
}
@@ -47,7 +45,7 @@ public class ArrayTestTest {
* Test the property 'arrayOfString'
*/
@Test
- public void arrayOfStringTest() {
+ void arrayOfStringTest() {
// TODO: test arrayOfString
}
@@ -55,7 +53,7 @@ public class ArrayTestTest {
* Test the property 'arrayArrayOfInteger'
*/
@Test
- public void arrayArrayOfIntegerTest() {
+ void arrayArrayOfIntegerTest() {
// TODO: test arrayArrayOfInteger
}
@@ -63,7 +61,7 @@ public class ArrayTestTest {
* Test the property 'arrayArrayOfModel'
*/
@Test
- public void arrayArrayOfModelTest() {
+ void arrayArrayOfModelTest() {
// TODO: test arrayArrayOfModel
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/BigCatTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/BigCatTest.java
index 0949e1385d8..aa1db2031da 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/BigCatTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/BigCatTest.java
@@ -20,21 +20,21 @@ import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import org.openapitools.client.model.Cat;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for BigCat
*/
-public class BigCatTest {
+class BigCatTest {
private final BigCat model = new BigCat();
/**
* Model tests for BigCat
*/
@Test
- public void testBigCat() {
+ void testBigCat() {
// TODO: test BigCat
}
@@ -42,7 +42,7 @@ public class BigCatTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -50,7 +50,7 @@ public class BigCatTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
@@ -58,7 +58,7 @@ public class BigCatTest {
* Test the property 'declawed'
*/
@Test
- public void declawedTest() {
+ void declawedTest() {
// TODO: test declawed
}
@@ -66,7 +66,7 @@ public class BigCatTest {
* Test the property 'kind'
*/
@Test
- public void kindTest() {
+ void kindTest() {
// TODO: test kind
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/CapitalizationTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/CapitalizationTest.java
index 1d029ba7c50..eda1830e0c0 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/CapitalizationTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/CapitalizationTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Capitalization
*/
-public class CapitalizationTest {
+class CapitalizationTest {
private final Capitalization model = new Capitalization();
/**
* Model tests for Capitalization
*/
@Test
- public void testCapitalization() {
+ void testCapitalization() {
// TODO: test Capitalization
}
@@ -44,7 +41,7 @@ public class CapitalizationTest {
* Test the property 'smallCamel'
*/
@Test
- public void smallCamelTest() {
+ void smallCamelTest() {
// TODO: test smallCamel
}
@@ -52,7 +49,7 @@ public class CapitalizationTest {
* Test the property 'capitalCamel'
*/
@Test
- public void capitalCamelTest() {
+ void capitalCamelTest() {
// TODO: test capitalCamel
}
@@ -60,7 +57,7 @@ public class CapitalizationTest {
* Test the property 'smallSnake'
*/
@Test
- public void smallSnakeTest() {
+ void smallSnakeTest() {
// TODO: test smallSnake
}
@@ -68,7 +65,7 @@ public class CapitalizationTest {
* Test the property 'capitalSnake'
*/
@Test
- public void capitalSnakeTest() {
+ void capitalSnakeTest() {
// TODO: test capitalSnake
}
@@ -76,7 +73,7 @@ public class CapitalizationTest {
* Test the property 'scAETHFlowPoints'
*/
@Test
- public void scAETHFlowPointsTest() {
+ void scAETHFlowPointsTest() {
// TODO: test scAETHFlowPoints
}
@@ -84,7 +81,7 @@ public class CapitalizationTest {
* Test the property 'ATT_NAME'
*/
@Test
- public void ATT_NAMETest() {
+ void ATT_NAMETest() {
// TODO: test ATT_NAME
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/CatTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/CatTest.java
index 718bb5b6baf..6e38fb46e73 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/CatTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/CatTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,26 +18,23 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import org.openapitools.client.model.Animal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Cat
*/
-public class CatTest {
+class CatTest {
private final Cat model = new Cat();
/**
* Model tests for Cat
*/
@Test
- public void testCat() {
+ void testCat() {
// TODO: test Cat
}
@@ -45,7 +42,7 @@ public class CatTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -53,7 +50,7 @@ public class CatTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
@@ -61,7 +58,7 @@ public class CatTest {
* Test the property 'declawed'
*/
@Test
- public void declawedTest() {
+ void declawedTest() {
// TODO: test declawed
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/CategoryTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/CategoryTest.java
index 79374c54e6f..4ac631b1e8c 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/CategoryTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/CategoryTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Category
*/
-public class CategoryTest {
+class CategoryTest {
private final Category model = new Category();
/**
* Model tests for Category
*/
@Test
- public void testCategory() {
+ void testCategory() {
// TODO: test Category
}
@@ -44,7 +41,7 @@ public class CategoryTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -52,7 +49,7 @@ public class CategoryTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ClassModelTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ClassModelTest.java
index 4c66db89c4f..aa381b709d9 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ClassModelTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ClassModelTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ClassModel
*/
-public class ClassModelTest {
+class ClassModelTest {
private final ClassModel model = new ClassModel();
/**
* Model tests for ClassModel
*/
@Test
- public void testClassModel() {
+ void testClassModel() {
// TODO: test ClassModel
}
@@ -44,7 +41,7 @@ public class ClassModelTest {
* Test the property 'propertyClass'
*/
@Test
- public void propertyClassTest() {
+ void propertyClassTest() {
// TODO: test propertyClass
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ClientTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ClientTest.java
index 1a9f6d6fc9e..95f0e2d39d2 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ClientTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ClientTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Client
*/
-public class ClientTest {
+class ClientTest {
private final Client model = new Client();
/**
* Model tests for Client
*/
@Test
- public void testClient() {
+ void testClient() {
// TODO: test Client
}
@@ -44,7 +41,7 @@ public class ClientTest {
* Test the property 'client'
*/
@Test
- public void clientTest() {
+ void clientTest() {
// TODO: test client
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/DogTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/DogTest.java
index 8392c174564..f65ec9fbebe 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/DogTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/DogTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,26 +18,23 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import org.openapitools.client.model.Animal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Dog
*/
-public class DogTest {
+class DogTest {
private final Dog model = new Dog();
/**
* Model tests for Dog
*/
@Test
- public void testDog() {
+ void testDog() {
// TODO: test Dog
}
@@ -45,7 +42,7 @@ public class DogTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -53,7 +50,7 @@ public class DogTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
@@ -61,7 +58,7 @@ public class DogTest {
* Test the property 'breed'
*/
@Test
- public void breedTest() {
+ void breedTest() {
// TODO: test breed
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/EnumArraysTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/EnumArraysTest.java
index a116bb028fc..1175d0a96ec 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/EnumArraysTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/EnumArraysTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,27 +18,25 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for EnumArrays
*/
-public class EnumArraysTest {
+class EnumArraysTest {
private final EnumArrays model = new EnumArrays();
/**
* Model tests for EnumArrays
*/
@Test
- public void testEnumArrays() {
+ void testEnumArrays() {
// TODO: test EnumArrays
}
@@ -46,7 +44,7 @@ public class EnumArraysTest {
* Test the property 'justSymbol'
*/
@Test
- public void justSymbolTest() {
+ void justSymbolTest() {
// TODO: test justSymbol
}
@@ -54,7 +52,7 @@ public class EnumArraysTest {
* Test the property 'arrayEnum'
*/
@Test
- public void arrayEnumTest() {
+ void arrayEnumTest() {
// TODO: test arrayEnum
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/EnumClassTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/EnumClassTest.java
index 97855ba723a..cb2a9c69498 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/EnumClassTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/EnumClassTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -14,20 +14,19 @@
package org.openapitools.client.model;
import com.google.gson.annotations.SerializedName;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for EnumClass
*/
-public class EnumClassTest {
+class EnumClassTest {
/**
* Model tests for EnumClass
*/
@Test
- public void testEnumClass() {
+ void testEnumClass() {
// TODO: test EnumClass
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/EnumTestTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/EnumTestTest.java
index d43e3cace6d..b097f85302d 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/EnumTestTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/EnumTestTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,26 +18,23 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import org.openapitools.client.model.OuterEnum;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for EnumTest
*/
-public class EnumTestTest {
+class EnumTestTest {
private final EnumTest model = new EnumTest();
/**
* Model tests for EnumTest
*/
@Test
- public void testEnumTest() {
+ void testEnumTest() {
// TODO: test EnumTest
}
@@ -45,7 +42,7 @@ public class EnumTestTest {
* Test the property 'enumString'
*/
@Test
- public void enumStringTest() {
+ void enumStringTest() {
// TODO: test enumString
}
@@ -53,7 +50,7 @@ public class EnumTestTest {
* Test the property 'enumStringRequired'
*/
@Test
- public void enumStringRequiredTest() {
+ void enumStringRequiredTest() {
// TODO: test enumStringRequired
}
@@ -61,7 +58,7 @@ public class EnumTestTest {
* Test the property 'enumInteger'
*/
@Test
- public void enumIntegerTest() {
+ void enumIntegerTest() {
// TODO: test enumInteger
}
@@ -69,7 +66,7 @@ public class EnumTestTest {
* Test the property 'enumNumber'
*/
@Test
- public void enumNumberTest() {
+ void enumNumberTest() {
// TODO: test enumNumber
}
@@ -77,7 +74,7 @@ public class EnumTestTest {
* Test the property 'outerEnum'
*/
@Test
- public void outerEnumTest() {
+ void outerEnumTest() {
// TODO: test outerEnum
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java
index a960673c616..08d51e19dad 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,43 +18,42 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.openapitools.client.model.ModelFile;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for FileSchemaTestClass
*/
-public class FileSchemaTestClassTest {
+class FileSchemaTestClassTest {
private final FileSchemaTestClass model = new FileSchemaTestClass();
/**
* Model tests for FileSchemaTestClass
*/
@Test
- public void testFileSchemaTestClass() {
+ void testFileSchemaTestClass() {
// TODO: test FileSchemaTestClass
}
/**
- * Test the property 'file'
+ * Test the property '_file'
*/
@Test
- public void fileTest() {
- // TODO: test file
+ void _fileTest() {
+ // TODO: test _file
}
/**
* Test the property 'files'
*/
@Test
- public void filesTest() {
+ void filesTest() {
// TODO: test files
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/FormatTestTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/FormatTestTest.java
index c6ffb82e15b..bcdcaf9dd06 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/FormatTestTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/FormatTestTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,28 +18,27 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.File;
import java.io.IOException;
import java.math.BigDecimal;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.UUID;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for FormatTest
*/
-public class FormatTestTest {
+class FormatTestTest {
private final FormatTest model = new FormatTest();
/**
* Model tests for FormatTest
*/
@Test
- public void testFormatTest() {
+ void testFormatTest() {
// TODO: test FormatTest
}
@@ -47,7 +46,7 @@ public class FormatTestTest {
* Test the property 'integer'
*/
@Test
- public void integerTest() {
+ void integerTest() {
// TODO: test integer
}
@@ -55,7 +54,7 @@ public class FormatTestTest {
* Test the property 'int32'
*/
@Test
- public void int32Test() {
+ void int32Test() {
// TODO: test int32
}
@@ -63,7 +62,7 @@ public class FormatTestTest {
* Test the property 'int64'
*/
@Test
- public void int64Test() {
+ void int64Test() {
// TODO: test int64
}
@@ -71,7 +70,7 @@ public class FormatTestTest {
* Test the property 'number'
*/
@Test
- public void numberTest() {
+ void numberTest() {
// TODO: test number
}
@@ -79,7 +78,7 @@ public class FormatTestTest {
* Test the property '_float'
*/
@Test
- public void _floatTest() {
+ void _floatTest() {
// TODO: test _float
}
@@ -87,7 +86,7 @@ public class FormatTestTest {
* Test the property '_double'
*/
@Test
- public void _doubleTest() {
+ void _doubleTest() {
// TODO: test _double
}
@@ -95,7 +94,7 @@ public class FormatTestTest {
* Test the property 'string'
*/
@Test
- public void stringTest() {
+ void stringTest() {
// TODO: test string
}
@@ -103,7 +102,7 @@ public class FormatTestTest {
* Test the property '_byte'
*/
@Test
- public void _byteTest() {
+ void _byteTest() {
// TODO: test _byte
}
@@ -111,7 +110,7 @@ public class FormatTestTest {
* Test the property 'binary'
*/
@Test
- public void binaryTest() {
+ void binaryTest() {
// TODO: test binary
}
@@ -119,7 +118,7 @@ public class FormatTestTest {
* Test the property 'date'
*/
@Test
- public void dateTest() {
+ void dateTest() {
// TODO: test date
}
@@ -127,7 +126,7 @@ public class FormatTestTest {
* Test the property 'dateTime'
*/
@Test
- public void dateTimeTest() {
+ void dateTimeTest() {
// TODO: test dateTime
}
@@ -135,7 +134,7 @@ public class FormatTestTest {
* Test the property 'uuid'
*/
@Test
- public void uuidTest() {
+ void uuidTest() {
// TODO: test uuid
}
@@ -143,8 +142,16 @@ public class FormatTestTest {
* Test the property 'password'
*/
@Test
- public void passwordTest() {
+ void passwordTest() {
// TODO: test password
}
+ /**
+ * Test the property 'bigDecimal'
+ */
+ @Test
+ void bigDecimalTest() {
+ // TODO: test bigDecimal
+ }
+
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java
index d854c0c9daf..01be6b15413 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for HasOnlyReadOnly
*/
-public class HasOnlyReadOnlyTest {
+class HasOnlyReadOnlyTest {
private final HasOnlyReadOnly model = new HasOnlyReadOnly();
/**
* Model tests for HasOnlyReadOnly
*/
@Test
- public void testHasOnlyReadOnly() {
+ void testHasOnlyReadOnly() {
// TODO: test HasOnlyReadOnly
}
@@ -44,7 +41,7 @@ public class HasOnlyReadOnlyTest {
* Test the property 'bar'
*/
@Test
- public void barTest() {
+ void barTest() {
// TODO: test bar
}
@@ -52,7 +49,7 @@ public class HasOnlyReadOnlyTest {
* Test the property 'foo'
*/
@Test
- public void fooTest() {
+ void fooTest() {
// TODO: test foo
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/MapTestTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/MapTestTest.java
index 9f78d486659..d9b643e6b43 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/MapTestTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/MapTestTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,28 +18,24 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.HashMap;
-import java.util.List;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for MapTest
*/
-public class MapTestTest {
+class MapTestTest {
private final MapTest model = new MapTest();
/**
* Model tests for MapTest
*/
@Test
- public void testMapTest() {
+ void testMapTest() {
// TODO: test MapTest
}
@@ -47,7 +43,7 @@ public class MapTestTest {
* Test the property 'mapMapOfString'
*/
@Test
- public void mapMapOfStringTest() {
+ void mapMapOfStringTest() {
// TODO: test mapMapOfString
}
@@ -55,7 +51,7 @@ public class MapTestTest {
* Test the property 'mapOfEnumString'
*/
@Test
- public void mapOfEnumStringTest() {
+ void mapOfEnumStringTest() {
// TODO: test mapOfEnumString
}
@@ -63,7 +59,7 @@ public class MapTestTest {
* Test the property 'directMap'
*/
@Test
- public void directMapTest() {
+ void directMapTest() {
// TODO: test directMap
}
@@ -71,7 +67,7 @@ public class MapTestTest {
* Test the property 'indirectMap'
*/
@Test
- public void indirectMapTest() {
+ void indirectMapTest() {
// TODO: test indirectMap
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java
index f9229a1a76b..0d57da0126e 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,30 +18,27 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
+import java.time.OffsetDateTime;
import java.util.HashMap;
-import java.util.List;
import java.util.Map;
import java.util.UUID;
import org.openapitools.client.model.Animal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for MixedPropertiesAndAdditionalPropertiesClass
*/
-public class MixedPropertiesAndAdditionalPropertiesClassTest {
+class MixedPropertiesAndAdditionalPropertiesClassTest {
private final MixedPropertiesAndAdditionalPropertiesClass model = new MixedPropertiesAndAdditionalPropertiesClass();
/**
* Model tests for MixedPropertiesAndAdditionalPropertiesClass
*/
@Test
- public void testMixedPropertiesAndAdditionalPropertiesClass() {
+ void testMixedPropertiesAndAdditionalPropertiesClass() {
// TODO: test MixedPropertiesAndAdditionalPropertiesClass
}
@@ -49,7 +46,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'uuid'
*/
@Test
- public void uuidTest() {
+ void uuidTest() {
// TODO: test uuid
}
@@ -57,7 +54,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'dateTime'
*/
@Test
- public void dateTimeTest() {
+ void dateTimeTest() {
// TODO: test dateTime
}
@@ -65,7 +62,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'map'
*/
@Test
- public void mapTest() {
+ void mapTest() {
// TODO: test map
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/Model200ResponseTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/Model200ResponseTest.java
index dcea5877334..ecae6e0f437 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/Model200ResponseTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/Model200ResponseTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Model200Response
*/
-public class Model200ResponseTest {
+class Model200ResponseTest {
private final Model200Response model = new Model200Response();
/**
* Model tests for Model200Response
*/
@Test
- public void testModel200Response() {
+ void testModel200Response() {
// TODO: test Model200Response
}
@@ -44,7 +41,7 @@ public class Model200ResponseTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
@@ -52,7 +49,7 @@ public class Model200ResponseTest {
* Test the property 'propertyClass'
*/
@Test
- public void propertyClassTest() {
+ void propertyClassTest() {
// TODO: test propertyClass
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java
index 46b8648fdcc..bb4aa91a78c 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelApiResponse
*/
-public class ModelApiResponseTest {
+class ModelApiResponseTest {
private final ModelApiResponse model = new ModelApiResponse();
/**
* Model tests for ModelApiResponse
*/
@Test
- public void testModelApiResponse() {
+ void testModelApiResponse() {
// TODO: test ModelApiResponse
}
@@ -44,7 +41,7 @@ public class ModelApiResponseTest {
* Test the property 'code'
*/
@Test
- public void codeTest() {
+ void codeTest() {
// TODO: test code
}
@@ -52,7 +49,7 @@ public class ModelApiResponseTest {
* Test the property 'type'
*/
@Test
- public void typeTest() {
+ void typeTest() {
// TODO: test type
}
@@ -60,7 +57,7 @@ public class ModelApiResponseTest {
* Test the property 'message'
*/
@Test
- public void messageTest() {
+ void messageTest() {
// TODO: test message
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ModelFileTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ModelFileTest.java
index 132012d4c38..973730324cc 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ModelFileTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ModelFileTest.java
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelFile
*/
-public class ModelFileTest {
+class ModelFileTest {
private final ModelFile model = new ModelFile();
/**
* Model tests for ModelFile
*/
@Test
- public void testModelFile() {
+ void testModelFile() {
// TODO: test ModelFile
}
@@ -44,7 +41,7 @@ public class ModelFileTest {
* Test the property 'sourceURI'
*/
@Test
- public void sourceURITest() {
+ void sourceURITest() {
// TODO: test sourceURI
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ModelListTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ModelListTest.java
index d3ed2075e9a..bdba8c46a91 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ModelListTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ModelListTest.java
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelList
*/
-public class ModelListTest {
+class ModelListTest {
private final ModelList model = new ModelList();
/**
* Model tests for ModelList
*/
@Test
- public void testModelList() {
+ void testModelList() {
// TODO: test ModelList
}
@@ -44,7 +41,7 @@ public class ModelListTest {
* Test the property '_123list'
*/
@Test
- public void _123listTest() {
+ void _123listTest() {
// TODO: test _123list
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ModelReturnTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ModelReturnTest.java
index 4135ead5686..ae4eaf6295f 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ModelReturnTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ModelReturnTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelReturn
*/
-public class ModelReturnTest {
+class ModelReturnTest {
private final ModelReturn model = new ModelReturn();
/**
* Model tests for ModelReturn
*/
@Test
- public void testModelReturn() {
+ void testModelReturn() {
// TODO: test ModelReturn
}
@@ -44,7 +41,7 @@ public class ModelReturnTest {
* Test the property '_return'
*/
@Test
- public void _returnTest() {
+ void _returnTest() {
// TODO: test _return
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/NameTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/NameTest.java
index bdc04b000c1..f35cf4746e5 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/NameTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/NameTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Name
*/
-public class NameTest {
+class NameTest {
private final Name model = new Name();
/**
* Model tests for Name
*/
@Test
- public void testName() {
+ void testName() {
// TODO: test Name
}
@@ -44,7 +41,7 @@ public class NameTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
@@ -52,7 +49,7 @@ public class NameTest {
* Test the property 'snakeCase'
*/
@Test
- public void snakeCaseTest() {
+ void snakeCaseTest() {
// TODO: test snakeCase
}
@@ -60,7 +57,7 @@ public class NameTest {
* Test the property 'property'
*/
@Test
- public void propertyTest() {
+ void propertyTest() {
// TODO: test property
}
@@ -68,7 +65,7 @@ public class NameTest {
* Test the property '_123number'
*/
@Test
- public void _123numberTest() {
+ void _123numberTest() {
// TODO: test _123number
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/NumberOnlyTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/NumberOnlyTest.java
index 214a6d4538d..16ed327afed 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/NumberOnlyTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/NumberOnlyTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,26 +18,23 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for NumberOnly
*/
-public class NumberOnlyTest {
+class NumberOnlyTest {
private final NumberOnly model = new NumberOnly();
/**
* Model tests for NumberOnly
*/
@Test
- public void testNumberOnly() {
+ void testNumberOnly() {
// TODO: test NumberOnly
}
@@ -45,7 +42,7 @@ public class NumberOnlyTest {
* Test the property 'justNumber'
*/
@Test
- public void justNumberTest() {
+ void justNumberTest() {
// TODO: test justNumber
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/OrderTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/OrderTest.java
index b97d88a4de2..439814c48b1 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/OrderTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/OrderTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,23 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import java.time.OffsetDateTime;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Order
*/
-public class OrderTest {
+class OrderTest {
private final Order model = new Order();
/**
* Model tests for Order
*/
@Test
- public void testOrder() {
+ void testOrder() {
// TODO: test Order
}
@@ -44,7 +42,7 @@ public class OrderTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -52,7 +50,7 @@ public class OrderTest {
* Test the property 'petId'
*/
@Test
- public void petIdTest() {
+ void petIdTest() {
// TODO: test petId
}
@@ -60,7 +58,7 @@ public class OrderTest {
* Test the property 'quantity'
*/
@Test
- public void quantityTest() {
+ void quantityTest() {
// TODO: test quantity
}
@@ -68,7 +66,7 @@ public class OrderTest {
* Test the property 'shipDate'
*/
@Test
- public void shipDateTest() {
+ void shipDateTest() {
// TODO: test shipDate
}
@@ -76,7 +74,7 @@ public class OrderTest {
* Test the property 'status'
*/
@Test
- public void statusTest() {
+ void statusTest() {
// TODO: test status
}
@@ -84,7 +82,7 @@ public class OrderTest {
* Test the property 'complete'
*/
@Test
- public void completeTest() {
+ void completeTest() {
// TODO: test complete
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/OuterCompositeTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/OuterCompositeTest.java
index 710bfedd580..cf76f8e58d0 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/OuterCompositeTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/OuterCompositeTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,26 +18,23 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for OuterComposite
*/
-public class OuterCompositeTest {
+class OuterCompositeTest {
private final OuterComposite model = new OuterComposite();
/**
* Model tests for OuterComposite
*/
@Test
- public void testOuterComposite() {
+ void testOuterComposite() {
// TODO: test OuterComposite
}
@@ -45,7 +42,7 @@ public class OuterCompositeTest {
* Test the property 'myNumber'
*/
@Test
- public void myNumberTest() {
+ void myNumberTest() {
// TODO: test myNumber
}
@@ -53,7 +50,7 @@ public class OuterCompositeTest {
* Test the property 'myString'
*/
@Test
- public void myStringTest() {
+ void myStringTest() {
// TODO: test myString
}
@@ -61,7 +58,7 @@ public class OuterCompositeTest {
* Test the property 'myBoolean'
*/
@Test
- public void myBooleanTest() {
+ void myBooleanTest() {
// TODO: test myBoolean
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/OuterEnumTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/OuterEnumTest.java
index 064f84b3ff6..4110989633b 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/OuterEnumTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/OuterEnumTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -14,20 +14,19 @@
package org.openapitools.client.model;
import com.google.gson.annotations.SerializedName;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for OuterEnum
*/
-public class OuterEnumTest {
+class OuterEnumTest {
/**
* Model tests for OuterEnum
*/
@Test
- public void testOuterEnum() {
+ void testOuterEnum() {
// TODO: test OuterEnum
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/PetTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/PetTest.java
index 4e8e4c65827..82448ec2368 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/PetTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/PetTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,29 +18,29 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.LinkedHashSet;
import java.util.List;
+import java.util.Set;
import org.openapitools.client.model.Category;
import org.openapitools.client.model.Tag;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Pet
*/
-public class PetTest {
+class PetTest {
private final Pet model = new Pet();
/**
* Model tests for Pet
*/
@Test
- public void testPet() {
+ void testPet() {
// TODO: test Pet
}
@@ -48,7 +48,7 @@ public class PetTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -56,7 +56,7 @@ public class PetTest {
* Test the property 'category'
*/
@Test
- public void categoryTest() {
+ void categoryTest() {
// TODO: test category
}
@@ -64,7 +64,7 @@ public class PetTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
@@ -72,7 +72,7 @@ public class PetTest {
* Test the property 'photoUrls'
*/
@Test
- public void photoUrlsTest() {
+ void photoUrlsTest() {
// TODO: test photoUrls
}
@@ -80,7 +80,7 @@ public class PetTest {
* Test the property 'tags'
*/
@Test
- public void tagsTest() {
+ void tagsTest() {
// TODO: test tags
}
@@ -88,7 +88,7 @@ public class PetTest {
* Test the property 'status'
*/
@Test
- public void statusTest() {
+ void statusTest() {
// TODO: test status
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java
index c89b608f609..72101f74b61 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ReadOnlyFirst
*/
-public class ReadOnlyFirstTest {
+class ReadOnlyFirstTest {
private final ReadOnlyFirst model = new ReadOnlyFirst();
/**
* Model tests for ReadOnlyFirst
*/
@Test
- public void testReadOnlyFirst() {
+ void testReadOnlyFirst() {
// TODO: test ReadOnlyFirst
}
@@ -44,7 +41,7 @@ public class ReadOnlyFirstTest {
* Test the property 'bar'
*/
@Test
- public void barTest() {
+ void barTest() {
// TODO: test bar
}
@@ -52,7 +49,7 @@ public class ReadOnlyFirstTest {
* Test the property 'baz'
*/
@Test
- public void bazTest() {
+ void bazTest() {
// TODO: test baz
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java
index d058c884e49..dfc2065188d 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for SpecialModelName
*/
-public class SpecialModelNameTest {
+class SpecialModelNameTest {
private final SpecialModelName model = new SpecialModelName();
/**
* Model tests for SpecialModelName
*/
@Test
- public void testSpecialModelName() {
+ void testSpecialModelName() {
// TODO: test SpecialModelName
}
@@ -44,7 +41,7 @@ public class SpecialModelNameTest {
* Test the property '$specialPropertyName'
*/
@Test
- public void $specialPropertyNameTest() {
+ void $specialPropertyNameTest() {
// TODO: test $specialPropertyName
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/TagTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/TagTest.java
index 27acc7ce8e7..36eea1ddb7b 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/TagTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/TagTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Tag
*/
-public class TagTest {
+class TagTest {
private final Tag model = new Tag();
/**
* Model tests for Tag
*/
@Test
- public void testTag() {
+ void testTag() {
// TODO: test Tag
}
@@ -44,7 +41,7 @@ public class TagTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -52,7 +49,7 @@ public class TagTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java
index f120407395a..3f8ac3d4a3f 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,28 +18,26 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for TypeHolderDefault
*/
-public class TypeHolderDefaultTest {
+class TypeHolderDefaultTest {
private final TypeHolderDefault model = new TypeHolderDefault();
/**
* Model tests for TypeHolderDefault
*/
@Test
- public void testTypeHolderDefault() {
+ void testTypeHolderDefault() {
// TODO: test TypeHolderDefault
}
@@ -47,7 +45,7 @@ public class TypeHolderDefaultTest {
* Test the property 'stringItem'
*/
@Test
- public void stringItemTest() {
+ void stringItemTest() {
// TODO: test stringItem
}
@@ -55,7 +53,7 @@ public class TypeHolderDefaultTest {
* Test the property 'numberItem'
*/
@Test
- public void numberItemTest() {
+ void numberItemTest() {
// TODO: test numberItem
}
@@ -63,7 +61,7 @@ public class TypeHolderDefaultTest {
* Test the property 'integerItem'
*/
@Test
- public void integerItemTest() {
+ void integerItemTest() {
// TODO: test integerItem
}
@@ -71,7 +69,7 @@ public class TypeHolderDefaultTest {
* Test the property 'boolItem'
*/
@Test
- public void boolItemTest() {
+ void boolItemTest() {
// TODO: test boolItem
}
@@ -79,7 +77,7 @@ public class TypeHolderDefaultTest {
* Test the property 'arrayItem'
*/
@Test
- public void arrayItemTest() {
+ void arrayItemTest() {
// TODO: test arrayItem
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java
index 5e99dff0cae..e0a7a0d614c 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,28 +18,26 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for TypeHolderExample
*/
-public class TypeHolderExampleTest {
+class TypeHolderExampleTest {
private final TypeHolderExample model = new TypeHolderExample();
/**
* Model tests for TypeHolderExample
*/
@Test
- public void testTypeHolderExample() {
+ void testTypeHolderExample() {
// TODO: test TypeHolderExample
}
@@ -47,7 +45,7 @@ public class TypeHolderExampleTest {
* Test the property 'stringItem'
*/
@Test
- public void stringItemTest() {
+ void stringItemTest() {
// TODO: test stringItem
}
@@ -55,15 +53,23 @@ public class TypeHolderExampleTest {
* Test the property 'numberItem'
*/
@Test
- public void numberItemTest() {
+ void numberItemTest() {
// TODO: test numberItem
}
+ /**
+ * Test the property 'floatItem'
+ */
+ @Test
+ void floatItemTest() {
+ // TODO: test floatItem
+ }
+
/**
* Test the property 'integerItem'
*/
@Test
- public void integerItemTest() {
+ void integerItemTest() {
// TODO: test integerItem
}
@@ -71,7 +77,7 @@ public class TypeHolderExampleTest {
* Test the property 'boolItem'
*/
@Test
- public void boolItemTest() {
+ void boolItemTest() {
// TODO: test boolItem
}
@@ -79,7 +85,7 @@ public class TypeHolderExampleTest {
* Test the property 'arrayItem'
*/
@Test
- public void arrayItemTest() {
+ void arrayItemTest() {
// TODO: test arrayItem
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/UserTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/UserTest.java
index da1c9bda4b5..5163783cfdc 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/UserTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/UserTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for User
*/
-public class UserTest {
+class UserTest {
private final User model = new User();
/**
* Model tests for User
*/
@Test
- public void testUser() {
+ void testUser() {
// TODO: test User
}
@@ -44,7 +41,7 @@ public class UserTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -52,7 +49,7 @@ public class UserTest {
* Test the property 'username'
*/
@Test
- public void usernameTest() {
+ void usernameTest() {
// TODO: test username
}
@@ -60,7 +57,7 @@ public class UserTest {
* Test the property 'firstName'
*/
@Test
- public void firstNameTest() {
+ void firstNameTest() {
// TODO: test firstName
}
@@ -68,7 +65,7 @@ public class UserTest {
* Test the property 'lastName'
*/
@Test
- public void lastNameTest() {
+ void lastNameTest() {
// TODO: test lastName
}
@@ -76,7 +73,7 @@ public class UserTest {
* Test the property 'email'
*/
@Test
- public void emailTest() {
+ void emailTest() {
// TODO: test email
}
@@ -84,7 +81,7 @@ public class UserTest {
* Test the property 'password'
*/
@Test
- public void passwordTest() {
+ void passwordTest() {
// TODO: test password
}
@@ -92,7 +89,7 @@ public class UserTest {
* Test the property 'phone'
*/
@Test
- public void phoneTest() {
+ void phoneTest() {
// TODO: test phone
}
@@ -100,7 +97,7 @@ public class UserTest {
* Test the property 'userStatus'
*/
@Test
- public void userStatusTest() {
+ void userStatusTest() {
// TODO: test userStatus
}
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/XmlItemTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/XmlItemTest.java
index 5e861e18621..3cfe59d203c 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/XmlItemTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/model/XmlItemTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,28 +18,26 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for XmlItem
*/
-public class XmlItemTest {
+class XmlItemTest {
private final XmlItem model = new XmlItem();
/**
* Model tests for XmlItem
*/
@Test
- public void testXmlItem() {
+ void testXmlItem() {
// TODO: test XmlItem
}
@@ -47,7 +45,7 @@ public class XmlItemTest {
* Test the property 'attributeString'
*/
@Test
- public void attributeStringTest() {
+ void attributeStringTest() {
// TODO: test attributeString
}
@@ -55,7 +53,7 @@ public class XmlItemTest {
* Test the property 'attributeNumber'
*/
@Test
- public void attributeNumberTest() {
+ void attributeNumberTest() {
// TODO: test attributeNumber
}
@@ -63,7 +61,7 @@ public class XmlItemTest {
* Test the property 'attributeInteger'
*/
@Test
- public void attributeIntegerTest() {
+ void attributeIntegerTest() {
// TODO: test attributeInteger
}
@@ -71,7 +69,7 @@ public class XmlItemTest {
* Test the property 'attributeBoolean'
*/
@Test
- public void attributeBooleanTest() {
+ void attributeBooleanTest() {
// TODO: test attributeBoolean
}
@@ -79,7 +77,7 @@ public class XmlItemTest {
* Test the property 'wrappedArray'
*/
@Test
- public void wrappedArrayTest() {
+ void wrappedArrayTest() {
// TODO: test wrappedArray
}
@@ -87,7 +85,7 @@ public class XmlItemTest {
* Test the property 'nameString'
*/
@Test
- public void nameStringTest() {
+ void nameStringTest() {
// TODO: test nameString
}
@@ -95,7 +93,7 @@ public class XmlItemTest {
* Test the property 'nameNumber'
*/
@Test
- public void nameNumberTest() {
+ void nameNumberTest() {
// TODO: test nameNumber
}
@@ -103,7 +101,7 @@ public class XmlItemTest {
* Test the property 'nameInteger'
*/
@Test
- public void nameIntegerTest() {
+ void nameIntegerTest() {
// TODO: test nameInteger
}
@@ -111,7 +109,7 @@ public class XmlItemTest {
* Test the property 'nameBoolean'
*/
@Test
- public void nameBooleanTest() {
+ void nameBooleanTest() {
// TODO: test nameBoolean
}
@@ -119,7 +117,7 @@ public class XmlItemTest {
* Test the property 'nameArray'
*/
@Test
- public void nameArrayTest() {
+ void nameArrayTest() {
// TODO: test nameArray
}
@@ -127,7 +125,7 @@ public class XmlItemTest {
* Test the property 'nameWrappedArray'
*/
@Test
- public void nameWrappedArrayTest() {
+ void nameWrappedArrayTest() {
// TODO: test nameWrappedArray
}
@@ -135,7 +133,7 @@ public class XmlItemTest {
* Test the property 'prefixString'
*/
@Test
- public void prefixStringTest() {
+ void prefixStringTest() {
// TODO: test prefixString
}
@@ -143,7 +141,7 @@ public class XmlItemTest {
* Test the property 'prefixNumber'
*/
@Test
- public void prefixNumberTest() {
+ void prefixNumberTest() {
// TODO: test prefixNumber
}
@@ -151,7 +149,7 @@ public class XmlItemTest {
* Test the property 'prefixInteger'
*/
@Test
- public void prefixIntegerTest() {
+ void prefixIntegerTest() {
// TODO: test prefixInteger
}
@@ -159,7 +157,7 @@ public class XmlItemTest {
* Test the property 'prefixBoolean'
*/
@Test
- public void prefixBooleanTest() {
+ void prefixBooleanTest() {
// TODO: test prefixBoolean
}
@@ -167,7 +165,7 @@ public class XmlItemTest {
* Test the property 'prefixArray'
*/
@Test
- public void prefixArrayTest() {
+ void prefixArrayTest() {
// TODO: test prefixArray
}
@@ -175,7 +173,7 @@ public class XmlItemTest {
* Test the property 'prefixWrappedArray'
*/
@Test
- public void prefixWrappedArrayTest() {
+ void prefixWrappedArrayTest() {
// TODO: test prefixWrappedArray
}
@@ -183,7 +181,7 @@ public class XmlItemTest {
* Test the property 'namespaceString'
*/
@Test
- public void namespaceStringTest() {
+ void namespaceStringTest() {
// TODO: test namespaceString
}
@@ -191,7 +189,7 @@ public class XmlItemTest {
* Test the property 'namespaceNumber'
*/
@Test
- public void namespaceNumberTest() {
+ void namespaceNumberTest() {
// TODO: test namespaceNumber
}
@@ -199,7 +197,7 @@ public class XmlItemTest {
* Test the property 'namespaceInteger'
*/
@Test
- public void namespaceIntegerTest() {
+ void namespaceIntegerTest() {
// TODO: test namespaceInteger
}
@@ -207,7 +205,7 @@ public class XmlItemTest {
* Test the property 'namespaceBoolean'
*/
@Test
- public void namespaceBooleanTest() {
+ void namespaceBooleanTest() {
// TODO: test namespaceBoolean
}
@@ -215,7 +213,7 @@ public class XmlItemTest {
* Test the property 'namespaceArray'
*/
@Test
- public void namespaceArrayTest() {
+ void namespaceArrayTest() {
// TODO: test namespaceArray
}
@@ -223,56 +221,56 @@ public class XmlItemTest {
* Test the property 'namespaceWrappedArray'
*/
@Test
- public void namespaceWrappedArrayTest() {
+ void namespaceWrappedArrayTest() {
// TODO: test namespaceWrappedArray
}
/**
- * Test the property 'prefixNamespaceString'
+ * Test the property 'prefixNsString'
*/
@Test
- public void prefixNamespaceStringTest() {
- // TODO: test prefixNamespaceString
+ void prefixNsStringTest() {
+ // TODO: test prefixNsString
}
/**
- * Test the property 'prefixNamespaceNumber'
+ * Test the property 'prefixNsNumber'
*/
@Test
- public void prefixNamespaceNumberTest() {
- // TODO: test prefixNamespaceNumber
+ void prefixNsNumberTest() {
+ // TODO: test prefixNsNumber
}
/**
- * Test the property 'prefixNamespaceInteger'
+ * Test the property 'prefixNsInteger'
*/
@Test
- public void prefixNamespaceIntegerTest() {
- // TODO: test prefixNamespaceInteger
+ void prefixNsIntegerTest() {
+ // TODO: test prefixNsInteger
}
/**
- * Test the property 'prefixNamespaceBoolean'
+ * Test the property 'prefixNsBoolean'
*/
@Test
- public void prefixNamespaceBooleanTest() {
- // TODO: test prefixNamespaceBoolean
+ void prefixNsBooleanTest() {
+ // TODO: test prefixNsBoolean
}
/**
- * Test the property 'prefixNamespaceArray'
+ * Test the property 'prefixNsArray'
*/
@Test
- public void prefixNamespaceArrayTest() {
- // TODO: test prefixNamespaceArray
+ void prefixNsArrayTest() {
+ // TODO: test prefixNsArray
}
/**
- * Test the property 'prefixNamespaceWrappedArray'
+ * Test the property 'prefixNsWrappedArray'
*/
@Test
- public void prefixNamespaceWrappedArrayTest() {
- // TODO: test prefixNamespaceWrappedArray
+ void prefixNsWrappedArrayTest() {
+ // TODO: test prefixNsWrappedArray
}
}
diff --git a/samples/client/petstore/java/retrofit2rx2/build.gradle b/samples/client/petstore/java/retrofit2rx2/build.gradle
index 4bad500d242..f55f6d44fe9 100644
--- a/samples/client/petstore/java/retrofit2rx2/build.gradle
+++ b/samples/client/petstore/java/retrofit2rx2/build.gradle
@@ -101,7 +101,7 @@ ext {
retrofit_version = "2.3.0"
jakarta_annotation_version = "1.3.5"
swagger_annotations_version = "1.5.22"
- junit_version = "4.13.2"
+ junit_version = "5.10.3"
rx_java_version = "2.1.1"
json_fire_version = "1.9.0"
}
@@ -119,5 +119,5 @@ dependencies {
}
implementation "io.gsonfire:gson-fire:$json_fire_version"
implementation "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version"
- testImplementation "junit:junit:$junit_version"
+ testImplementation "org.junit.jupiter:junit-jupiter-api:$junit_version"
}
diff --git a/samples/client/petstore/java/retrofit2rx2/build.sbt b/samples/client/petstore/java/retrofit2rx2/build.sbt
index 872d126e7c5..1fc10a88b7a 100644
--- a/samples/client/petstore/java/retrofit2rx2/build.sbt
+++ b/samples/client/petstore/java/retrofit2rx2/build.sbt
@@ -18,7 +18,7 @@ lazy val root = (project in file(".")).
"org.apache.oltu.oauth2" % "org.apache.oltu.oauth2.client" % "1.0.1" % "compile",
"io.gsonfire" % "gson-fire" % "1.9.0" % "compile",
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
- "junit" % "junit" % "4.13.2" % "test",
+ "org.junit.jupiter" % "junit-jupiter-api" % "5.10.3" % "test",
"com.novocode" % "junit-interface" % "0.11" % "test"
)
)
diff --git a/samples/client/petstore/java/retrofit2rx2/pom.xml b/samples/client/petstore/java/retrofit2rx2/pom.xml
index 283c5647bd8..8ee5b1ab864 100644
--- a/samples/client/petstore/java/retrofit2rx2/pom.xml
+++ b/samples/client/petstore/java/retrofit2rx2/pom.xml
@@ -259,8 +259,8 @@
- junit
- junit
+ org.junit.jupiter
+ junit-jupiter-api
${junit-version}
test
@@ -276,6 +276,6 @@
2.1.1
1.3.5
1.0.1
- 4.13.2
+ 5.10.3
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java
index 1d45ba717a2..ac000a3d22a 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java
@@ -2,9 +2,13 @@ package org.openapitools.client.api;
import org.openapitools.client.ApiClient;
import org.openapitools.client.model.Client;
-import org.junit.Before;
-import org.junit.Test;
+import java.util.UUID;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
@@ -17,7 +21,7 @@ public class AnotherFakeApiTest {
private AnotherFakeApi api;
- @Before
+ @BeforeEach
public void setup() {
api = new ApiClient().createService(AnotherFakeApi.class);
}
@@ -25,12 +29,13 @@ public class AnotherFakeApiTest {
/**
* To test special tags
*
- * To test special tags
+ * To test special tags and operation ID starting with number
*/
@Test
- public void testSpecialTagsTest() {
- Client client = null;
- // Client response = api.testSpecialTags(client);
+ public void call123testSpecialTagsTest() {
+ UUID uuidTest = null;
+ Client body = null;
+ // Client response = api.call123testSpecialTags(uuidTest, body);
// TODO: test validations
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/FakeApiTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/FakeApiTest.java
index 82a96b9818b..896c594ae92 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/FakeApiTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/FakeApiTest.java
@@ -9,9 +9,13 @@ import java.time.LocalDate;
import java.time.OffsetDateTime;
import org.openapitools.client.model.OuterComposite;
import org.openapitools.client.model.User;
-import org.junit.Before;
-import org.junit.Test;
+import org.openapitools.client.model.XmlItem;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
@@ -24,11 +28,23 @@ public class FakeApiTest {
private FakeApi api;
- @Before
+ @BeforeEach
public void setup() {
api = new ApiClient().createService(FakeApi.class);
}
+ /**
+ * creates an XmlItem
+ *
+ * this route creates an XmlItem
+ */
+ @Test
+ public void createXmlItemTest() {
+ XmlItem xmlItem = null;
+ // api.createXmlItem(xmlItem);
+
+ // TODO: test validations
+ }
/**
*
*
@@ -48,8 +64,8 @@ public class FakeApiTest {
*/
@Test
public void fakeOuterCompositeSerializeTest() {
- OuterComposite outerComposite = null;
- // OuterComposite response = api.fakeOuterCompositeSerialize(outerComposite);
+ OuterComposite body = null;
+ // OuterComposite response = api.fakeOuterCompositeSerialize(body);
// TODO: test validations
}
@@ -84,8 +100,8 @@ public class FakeApiTest {
*/
@Test
public void testBodyWithFileSchemaTest() {
- FileSchemaTestClass fileSchemaTestClass = null;
- // api.testBodyWithFileSchema(fileSchemaTestClass);
+ FileSchemaTestClass body = null;
+ // api.testBodyWithFileSchema(body);
// TODO: test validations
}
@@ -97,8 +113,8 @@ public class FakeApiTest {
@Test
public void testBodyWithQueryParamsTest() {
String query = null;
- User user = null;
- // api.testBodyWithQueryParams(query, user);
+ User body = null;
+ // api.testBodyWithQueryParams(query, body);
// TODO: test validations
}
@@ -109,15 +125,15 @@ public class FakeApiTest {
*/
@Test
public void testClientModelTest() {
- Client client = null;
- // Client response = api.testClientModel(client);
+ Client body = null;
+ // Client response = api.testClientModel(body);
// TODO: test validations
}
/**
- * Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
+ * Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
*
- * Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
+ * Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
*/
@Test
public void testEndpointParametersTest() {
@@ -182,8 +198,8 @@ public class FakeApiTest {
*/
@Test
public void testInlineAdditionalPropertiesTest() {
- Map requestBody = null;
- // api.testInlineAdditionalProperties(requestBody);
+ Map param = null;
+ // api.testInlineAdditionalProperties(param);
// TODO: test validations
}
@@ -198,6 +214,22 @@ public class FakeApiTest {
String param2 = null;
// api.testJsonFormData(param, param2);
+ // TODO: test validations
+ }
+ /**
+ *
+ *
+ * To test the collection format in query parameters
+ */
+ @Test
+ public void testQueryParameterCollectionFormatTest() {
+ List pipe = null;
+ List ioutil = null;
+ List http = null;
+ List url = null;
+ List context = null;
+ // api.testQueryParameterCollectionFormat(pipe, ioutil, http, url, context);
+
// TODO: test validations
}
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java
index 6e32cc28481..3bde7219918 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java
@@ -2,9 +2,12 @@ package org.openapitools.client.api;
import org.openapitools.client.ApiClient;
import org.openapitools.client.model.Client;
-import org.junit.Before;
-import org.junit.Test;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
@@ -17,7 +20,7 @@ public class FakeClassnameTags123ApiTest {
private FakeClassnameTags123Api api;
- @Before
+ @BeforeEach
public void setup() {
api = new ApiClient().createService(FakeClassnameTags123Api.class);
}
@@ -29,8 +32,8 @@ public class FakeClassnameTags123ApiTest {
*/
@Test
public void testClassnameTest() {
- Client client = null;
- // Client response = api.testClassname(client);
+ Client body = null;
+ // Client response = api.testClassname(body);
// TODO: test validations
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/PetApiTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/PetApiTest.java
index 65eed9391e9..c9cf0ff38e4 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/PetApiTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/PetApiTest.java
@@ -4,9 +4,13 @@ import org.openapitools.client.ApiClient;
import java.io.File;
import org.openapitools.client.model.ModelApiResponse;
import org.openapitools.client.model.Pet;
-import org.junit.Before;
-import org.junit.Test;
+import java.util.Set;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
@@ -19,7 +23,7 @@ public class PetApiTest {
private PetApi api;
- @Before
+ @BeforeEach
public void setup() {
api = new ApiClient().createService(PetApi.class);
}
@@ -31,8 +35,8 @@ public class PetApiTest {
*/
@Test
public void addPetTest() {
- Pet pet = null;
- // api.addPet(pet);
+ Pet body = null;
+ // api.addPet(body);
// TODO: test validations
}
@@ -68,8 +72,8 @@ public class PetApiTest {
*/
@Test
public void findPetsByTagsTest() {
- List tags = null;
- // List response = api.findPetsByTags(tags);
+ Set tags = null;
+ // Set response = api.findPetsByTags(tags);
// TODO: test validations
}
@@ -92,8 +96,8 @@ public class PetApiTest {
*/
@Test
public void updatePetTest() {
- Pet pet = null;
- // api.updatePet(pet);
+ Pet body = null;
+ // api.updatePet(body);
// TODO: test validations
}
@@ -120,8 +124,22 @@ public class PetApiTest {
public void uploadFileTest() {
Long petId = null;
String additionalMetadata = null;
- File file = null;
- // ModelApiResponse response = api.uploadFile(petId, additionalMetadata, file);
+ File _file = null;
+ // ModelApiResponse response = api.uploadFile(petId, additionalMetadata, _file);
+
+ // TODO: test validations
+ }
+ /**
+ * uploads an image (required)
+ *
+ *
+ */
+ @Test
+ public void uploadFileWithRequiredFileTest() {
+ Long petId = null;
+ File requiredFile = null;
+ String additionalMetadata = null;
+ // ModelApiResponse response = api.uploadFileWithRequiredFile(petId, requiredFile, additionalMetadata);
// TODO: test validations
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/StoreApiTest.java
index 2f72f617c3a..3a00aa1b95e 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -2,9 +2,12 @@ package org.openapitools.client.api;
import org.openapitools.client.ApiClient;
import org.openapitools.client.model.Order;
-import org.junit.Before;
-import org.junit.Test;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
@@ -17,7 +20,7 @@ public class StoreApiTest {
private StoreApi api;
- @Before
+ @BeforeEach
public void setup() {
api = new ApiClient().createService(StoreApi.class);
}
@@ -64,8 +67,8 @@ public class StoreApiTest {
*/
@Test
public void placeOrderTest() {
- Order order = null;
- // Order response = api.placeOrder(order);
+ Order body = null;
+ // Order response = api.placeOrder(body);
// TODO: test validations
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/UserApiTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/UserApiTest.java
index 9174f6d0250..a269d4fc6b1 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/UserApiTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/UserApiTest.java
@@ -1,10 +1,14 @@
package org.openapitools.client.api;
import org.openapitools.client.ApiClient;
+import java.time.OffsetDateTime;
import org.openapitools.client.model.User;
-import org.junit.Before;
-import org.junit.Test;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
@@ -17,7 +21,7 @@ public class UserApiTest {
private UserApi api;
- @Before
+ @BeforeEach
public void setup() {
api = new ApiClient().createService(UserApi.class);
}
@@ -29,8 +33,8 @@ public class UserApiTest {
*/
@Test
public void createUserTest() {
- User user = null;
- // api.createUser(user);
+ User body = null;
+ // api.createUser(body);
// TODO: test validations
}
@@ -41,8 +45,8 @@ public class UserApiTest {
*/
@Test
public void createUsersWithArrayInputTest() {
- List user = null;
- // api.createUsersWithArrayInput(user);
+ List body = null;
+ // api.createUsersWithArrayInput(body);
// TODO: test validations
}
@@ -53,8 +57,8 @@ public class UserApiTest {
*/
@Test
public void createUsersWithListInputTest() {
- List user = null;
- // api.createUsersWithListInput(user);
+ List body = null;
+ // api.createUsersWithListInput(body);
// TODO: test validations
}
@@ -114,8 +118,8 @@ public class UserApiTest {
@Test
public void updateUserTest() {
String username = null;
- User user = null;
- // api.updateUser(username, user);
+ User body = null;
+ // api.updateUser(username, body);
// TODO: test validations
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java
index 656f0577161..04fa4f5b6d9 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,27 +18,24 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesAnyType
*/
-public class AdditionalPropertiesAnyTypeTest {
+class AdditionalPropertiesAnyTypeTest {
private final AdditionalPropertiesAnyType model = new AdditionalPropertiesAnyType();
/**
* Model tests for AdditionalPropertiesAnyType
*/
@Test
- public void testAdditionalPropertiesAnyType() {
+ void testAdditionalPropertiesAnyType() {
// TODO: test AdditionalPropertiesAnyType
}
@@ -46,7 +43,7 @@ public class AdditionalPropertiesAnyTypeTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java
index 4c5bdc4ffad..80dc3fcbd43 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,28 +18,25 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesArray
*/
-public class AdditionalPropertiesArrayTest {
+class AdditionalPropertiesArrayTest {
private final AdditionalPropertiesArray model = new AdditionalPropertiesArray();
/**
* Model tests for AdditionalPropertiesArray
*/
@Test
- public void testAdditionalPropertiesArray() {
+ void testAdditionalPropertiesArray() {
// TODO: test AdditionalPropertiesArray
}
@@ -47,7 +44,7 @@ public class AdditionalPropertiesArrayTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java
index de976999c63..ca1046a0fc8 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,27 +18,24 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesBoolean
*/
-public class AdditionalPropertiesBooleanTest {
+class AdditionalPropertiesBooleanTest {
private final AdditionalPropertiesBoolean model = new AdditionalPropertiesBoolean();
/**
* Model tests for AdditionalPropertiesBoolean
*/
@Test
- public void testAdditionalPropertiesBoolean() {
+ void testAdditionalPropertiesBoolean() {
// TODO: test AdditionalPropertiesBoolean
}
@@ -46,7 +43,7 @@ public class AdditionalPropertiesBooleanTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java
index 3c18ad38c7e..3c34271bf0d 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,45 +18,115 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
+import java.math.BigDecimal;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesClass
*/
-public class AdditionalPropertiesClassTest {
+class AdditionalPropertiesClassTest {
private final AdditionalPropertiesClass model = new AdditionalPropertiesClass();
/**
* Model tests for AdditionalPropertiesClass
*/
@Test
- public void testAdditionalPropertiesClass() {
+ void testAdditionalPropertiesClass() {
// TODO: test AdditionalPropertiesClass
}
/**
- * Test the property 'mapProperty'
+ * Test the property 'mapString'
*/
@Test
- public void mapPropertyTest() {
- // TODO: test mapProperty
+ void mapStringTest() {
+ // TODO: test mapString
}
/**
- * Test the property 'mapOfMapProperty'
+ * Test the property 'mapNumber'
*/
@Test
- public void mapOfMapPropertyTest() {
- // TODO: test mapOfMapProperty
+ void mapNumberTest() {
+ // TODO: test mapNumber
+ }
+
+ /**
+ * Test the property 'mapInteger'
+ */
+ @Test
+ void mapIntegerTest() {
+ // TODO: test mapInteger
+ }
+
+ /**
+ * Test the property 'mapBoolean'
+ */
+ @Test
+ void mapBooleanTest() {
+ // TODO: test mapBoolean
+ }
+
+ /**
+ * Test the property 'mapArrayInteger'
+ */
+ @Test
+ void mapArrayIntegerTest() {
+ // TODO: test mapArrayInteger
+ }
+
+ /**
+ * Test the property 'mapArrayAnytype'
+ */
+ @Test
+ void mapArrayAnytypeTest() {
+ // TODO: test mapArrayAnytype
+ }
+
+ /**
+ * Test the property 'mapMapString'
+ */
+ @Test
+ void mapMapStringTest() {
+ // TODO: test mapMapString
+ }
+
+ /**
+ * Test the property 'mapMapAnytype'
+ */
+ @Test
+ void mapMapAnytypeTest() {
+ // TODO: test mapMapAnytype
+ }
+
+ /**
+ * Test the property 'anytype1'
+ */
+ @Test
+ void anytype1Test() {
+ // TODO: test anytype1
+ }
+
+ /**
+ * Test the property 'anytype2'
+ */
+ @Test
+ void anytype2Test() {
+ // TODO: test anytype2
+ }
+
+ /**
+ * Test the property 'anytype3'
+ */
+ @Test
+ void anytype3Test() {
+ // TODO: test anytype3
}
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java
index 712e0c131b1..e9f37e84ecd 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,27 +18,24 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesInteger
*/
-public class AdditionalPropertiesIntegerTest {
+class AdditionalPropertiesIntegerTest {
private final AdditionalPropertiesInteger model = new AdditionalPropertiesInteger();
/**
* Model tests for AdditionalPropertiesInteger
*/
@Test
- public void testAdditionalPropertiesInteger() {
+ void testAdditionalPropertiesInteger() {
// TODO: test AdditionalPropertiesInteger
}
@@ -46,7 +43,7 @@ public class AdditionalPropertiesIntegerTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java
index a2039fa83a5..3d6ac0eec25 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,28 +18,25 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesNumber
*/
-public class AdditionalPropertiesNumberTest {
+class AdditionalPropertiesNumberTest {
private final AdditionalPropertiesNumber model = new AdditionalPropertiesNumber();
/**
* Model tests for AdditionalPropertiesNumber
*/
@Test
- public void testAdditionalPropertiesNumber() {
+ void testAdditionalPropertiesNumber() {
// TODO: test AdditionalPropertiesNumber
}
@@ -47,7 +44,7 @@ public class AdditionalPropertiesNumberTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java
index 3c9fe9323b8..47389e5fd54 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,27 +18,24 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesObject
*/
-public class AdditionalPropertiesObjectTest {
+class AdditionalPropertiesObjectTest {
private final AdditionalPropertiesObject model = new AdditionalPropertiesObject();
/**
* Model tests for AdditionalPropertiesObject
*/
@Test
- public void testAdditionalPropertiesObject() {
+ void testAdditionalPropertiesObject() {
// TODO: test AdditionalPropertiesObject
}
@@ -46,7 +43,7 @@ public class AdditionalPropertiesObjectTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java
index 3a3942ab84d..162ae6f2edd 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,27 +18,24 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesString
*/
-public class AdditionalPropertiesStringTest {
+class AdditionalPropertiesStringTest {
private final AdditionalPropertiesString model = new AdditionalPropertiesString();
/**
* Model tests for AdditionalPropertiesString
*/
@Test
- public void testAdditionalPropertiesString() {
+ void testAdditionalPropertiesString() {
// TODO: test AdditionalPropertiesString
}
@@ -46,7 +43,7 @@ public class AdditionalPropertiesStringTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AnimalTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AnimalTest.java
index 30ed464f5e1..e8508c4319b 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AnimalTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/AnimalTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Animal
*/
-public class AnimalTest {
+class AnimalTest {
private final Animal model = new Animal();
/**
* Model tests for Animal
*/
@Test
- public void testAnimal() {
+ void testAnimal() {
// TODO: test Animal
}
@@ -44,7 +41,7 @@ public class AnimalTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -52,7 +49,7 @@ public class AnimalTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java
index 70947526050..9d8fb3480f6 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,28 +18,26 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayOfArrayOfNumberOnly
*/
-public class ArrayOfArrayOfNumberOnlyTest {
+class ArrayOfArrayOfNumberOnlyTest {
private final ArrayOfArrayOfNumberOnly model = new ArrayOfArrayOfNumberOnly();
/**
* Model tests for ArrayOfArrayOfNumberOnly
*/
@Test
- public void testArrayOfArrayOfNumberOnly() {
+ void testArrayOfArrayOfNumberOnly() {
// TODO: test ArrayOfArrayOfNumberOnly
}
@@ -47,7 +45,7 @@ public class ArrayOfArrayOfNumberOnlyTest {
* Test the property 'arrayArrayNumber'
*/
@Test
- public void arrayArrayNumberTest() {
+ void arrayArrayNumberTest() {
// TODO: test arrayArrayNumber
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java
index 2f88d6ad4b9..ef70479bb3c 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,28 +18,26 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayOfNumberOnly
*/
-public class ArrayOfNumberOnlyTest {
+class ArrayOfNumberOnlyTest {
private final ArrayOfNumberOnly model = new ArrayOfNumberOnly();
/**
* Model tests for ArrayOfNumberOnly
*/
@Test
- public void testArrayOfNumberOnly() {
+ void testArrayOfNumberOnly() {
// TODO: test ArrayOfNumberOnly
}
@@ -47,7 +45,7 @@ public class ArrayOfNumberOnlyTest {
* Test the property 'arrayNumber'
*/
@Test
- public void arrayNumberTest() {
+ void arrayNumberTest() {
// TODO: test arrayNumber
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ArrayTestTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ArrayTestTest.java
index 3182aa65481..f5c7ed8752f 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ArrayTestTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ArrayTestTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,28 +18,26 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
import org.openapitools.client.model.ReadOnlyFirst;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayTest
*/
-public class ArrayTestTest {
+class ArrayTestTest {
private final ArrayTest model = new ArrayTest();
/**
* Model tests for ArrayTest
*/
@Test
- public void testArrayTest() {
+ void testArrayTest() {
// TODO: test ArrayTest
}
@@ -47,7 +45,7 @@ public class ArrayTestTest {
* Test the property 'arrayOfString'
*/
@Test
- public void arrayOfStringTest() {
+ void arrayOfStringTest() {
// TODO: test arrayOfString
}
@@ -55,7 +53,7 @@ public class ArrayTestTest {
* Test the property 'arrayArrayOfInteger'
*/
@Test
- public void arrayArrayOfIntegerTest() {
+ void arrayArrayOfIntegerTest() {
// TODO: test arrayArrayOfInteger
}
@@ -63,7 +61,7 @@ public class ArrayTestTest {
* Test the property 'arrayArrayOfModel'
*/
@Test
- public void arrayArrayOfModelTest() {
+ void arrayArrayOfModelTest() {
// TODO: test arrayArrayOfModel
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/BigCatTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/BigCatTest.java
index 0949e1385d8..aa1db2031da 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/BigCatTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/BigCatTest.java
@@ -20,21 +20,21 @@ import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import org.openapitools.client.model.Cat;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for BigCat
*/
-public class BigCatTest {
+class BigCatTest {
private final BigCat model = new BigCat();
/**
* Model tests for BigCat
*/
@Test
- public void testBigCat() {
+ void testBigCat() {
// TODO: test BigCat
}
@@ -42,7 +42,7 @@ public class BigCatTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -50,7 +50,7 @@ public class BigCatTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
@@ -58,7 +58,7 @@ public class BigCatTest {
* Test the property 'declawed'
*/
@Test
- public void declawedTest() {
+ void declawedTest() {
// TODO: test declawed
}
@@ -66,7 +66,7 @@ public class BigCatTest {
* Test the property 'kind'
*/
@Test
- public void kindTest() {
+ void kindTest() {
// TODO: test kind
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/CapitalizationTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/CapitalizationTest.java
index 1d029ba7c50..eda1830e0c0 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/CapitalizationTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/CapitalizationTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Capitalization
*/
-public class CapitalizationTest {
+class CapitalizationTest {
private final Capitalization model = new Capitalization();
/**
* Model tests for Capitalization
*/
@Test
- public void testCapitalization() {
+ void testCapitalization() {
// TODO: test Capitalization
}
@@ -44,7 +41,7 @@ public class CapitalizationTest {
* Test the property 'smallCamel'
*/
@Test
- public void smallCamelTest() {
+ void smallCamelTest() {
// TODO: test smallCamel
}
@@ -52,7 +49,7 @@ public class CapitalizationTest {
* Test the property 'capitalCamel'
*/
@Test
- public void capitalCamelTest() {
+ void capitalCamelTest() {
// TODO: test capitalCamel
}
@@ -60,7 +57,7 @@ public class CapitalizationTest {
* Test the property 'smallSnake'
*/
@Test
- public void smallSnakeTest() {
+ void smallSnakeTest() {
// TODO: test smallSnake
}
@@ -68,7 +65,7 @@ public class CapitalizationTest {
* Test the property 'capitalSnake'
*/
@Test
- public void capitalSnakeTest() {
+ void capitalSnakeTest() {
// TODO: test capitalSnake
}
@@ -76,7 +73,7 @@ public class CapitalizationTest {
* Test the property 'scAETHFlowPoints'
*/
@Test
- public void scAETHFlowPointsTest() {
+ void scAETHFlowPointsTest() {
// TODO: test scAETHFlowPoints
}
@@ -84,7 +81,7 @@ public class CapitalizationTest {
* Test the property 'ATT_NAME'
*/
@Test
- public void ATT_NAMETest() {
+ void ATT_NAMETest() {
// TODO: test ATT_NAME
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/CatTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/CatTest.java
index 718bb5b6baf..6e38fb46e73 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/CatTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/CatTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,26 +18,23 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import org.openapitools.client.model.Animal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Cat
*/
-public class CatTest {
+class CatTest {
private final Cat model = new Cat();
/**
* Model tests for Cat
*/
@Test
- public void testCat() {
+ void testCat() {
// TODO: test Cat
}
@@ -45,7 +42,7 @@ public class CatTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -53,7 +50,7 @@ public class CatTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
@@ -61,7 +58,7 @@ public class CatTest {
* Test the property 'declawed'
*/
@Test
- public void declawedTest() {
+ void declawedTest() {
// TODO: test declawed
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/CategoryTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/CategoryTest.java
index 79374c54e6f..4ac631b1e8c 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/CategoryTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/CategoryTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Category
*/
-public class CategoryTest {
+class CategoryTest {
private final Category model = new Category();
/**
* Model tests for Category
*/
@Test
- public void testCategory() {
+ void testCategory() {
// TODO: test Category
}
@@ -44,7 +41,7 @@ public class CategoryTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -52,7 +49,7 @@ public class CategoryTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ClassModelTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ClassModelTest.java
index 4c66db89c4f..aa381b709d9 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ClassModelTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ClassModelTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ClassModel
*/
-public class ClassModelTest {
+class ClassModelTest {
private final ClassModel model = new ClassModel();
/**
* Model tests for ClassModel
*/
@Test
- public void testClassModel() {
+ void testClassModel() {
// TODO: test ClassModel
}
@@ -44,7 +41,7 @@ public class ClassModelTest {
* Test the property 'propertyClass'
*/
@Test
- public void propertyClassTest() {
+ void propertyClassTest() {
// TODO: test propertyClass
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ClientTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ClientTest.java
index 1a9f6d6fc9e..95f0e2d39d2 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ClientTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ClientTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Client
*/
-public class ClientTest {
+class ClientTest {
private final Client model = new Client();
/**
* Model tests for Client
*/
@Test
- public void testClient() {
+ void testClient() {
// TODO: test Client
}
@@ -44,7 +41,7 @@ public class ClientTest {
* Test the property 'client'
*/
@Test
- public void clientTest() {
+ void clientTest() {
// TODO: test client
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/DogTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/DogTest.java
index 8392c174564..f65ec9fbebe 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/DogTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/DogTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,26 +18,23 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import org.openapitools.client.model.Animal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Dog
*/
-public class DogTest {
+class DogTest {
private final Dog model = new Dog();
/**
* Model tests for Dog
*/
@Test
- public void testDog() {
+ void testDog() {
// TODO: test Dog
}
@@ -45,7 +42,7 @@ public class DogTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -53,7 +50,7 @@ public class DogTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
@@ -61,7 +58,7 @@ public class DogTest {
* Test the property 'breed'
*/
@Test
- public void breedTest() {
+ void breedTest() {
// TODO: test breed
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/EnumArraysTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/EnumArraysTest.java
index a116bb028fc..1175d0a96ec 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/EnumArraysTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/EnumArraysTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,27 +18,25 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for EnumArrays
*/
-public class EnumArraysTest {
+class EnumArraysTest {
private final EnumArrays model = new EnumArrays();
/**
* Model tests for EnumArrays
*/
@Test
- public void testEnumArrays() {
+ void testEnumArrays() {
// TODO: test EnumArrays
}
@@ -46,7 +44,7 @@ public class EnumArraysTest {
* Test the property 'justSymbol'
*/
@Test
- public void justSymbolTest() {
+ void justSymbolTest() {
// TODO: test justSymbol
}
@@ -54,7 +52,7 @@ public class EnumArraysTest {
* Test the property 'arrayEnum'
*/
@Test
- public void arrayEnumTest() {
+ void arrayEnumTest() {
// TODO: test arrayEnum
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/EnumClassTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/EnumClassTest.java
index 97855ba723a..cb2a9c69498 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/EnumClassTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/EnumClassTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -14,20 +14,19 @@
package org.openapitools.client.model;
import com.google.gson.annotations.SerializedName;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for EnumClass
*/
-public class EnumClassTest {
+class EnumClassTest {
/**
* Model tests for EnumClass
*/
@Test
- public void testEnumClass() {
+ void testEnumClass() {
// TODO: test EnumClass
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/EnumTestTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/EnumTestTest.java
index d43e3cace6d..b097f85302d 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/EnumTestTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/EnumTestTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,26 +18,23 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import org.openapitools.client.model.OuterEnum;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for EnumTest
*/
-public class EnumTestTest {
+class EnumTestTest {
private final EnumTest model = new EnumTest();
/**
* Model tests for EnumTest
*/
@Test
- public void testEnumTest() {
+ void testEnumTest() {
// TODO: test EnumTest
}
@@ -45,7 +42,7 @@ public class EnumTestTest {
* Test the property 'enumString'
*/
@Test
- public void enumStringTest() {
+ void enumStringTest() {
// TODO: test enumString
}
@@ -53,7 +50,7 @@ public class EnumTestTest {
* Test the property 'enumStringRequired'
*/
@Test
- public void enumStringRequiredTest() {
+ void enumStringRequiredTest() {
// TODO: test enumStringRequired
}
@@ -61,7 +58,7 @@ public class EnumTestTest {
* Test the property 'enumInteger'
*/
@Test
- public void enumIntegerTest() {
+ void enumIntegerTest() {
// TODO: test enumInteger
}
@@ -69,7 +66,7 @@ public class EnumTestTest {
* Test the property 'enumNumber'
*/
@Test
- public void enumNumberTest() {
+ void enumNumberTest() {
// TODO: test enumNumber
}
@@ -77,7 +74,7 @@ public class EnumTestTest {
* Test the property 'outerEnum'
*/
@Test
- public void outerEnumTest() {
+ void outerEnumTest() {
// TODO: test outerEnum
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java
index a960673c616..08d51e19dad 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,43 +18,42 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.openapitools.client.model.ModelFile;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for FileSchemaTestClass
*/
-public class FileSchemaTestClassTest {
+class FileSchemaTestClassTest {
private final FileSchemaTestClass model = new FileSchemaTestClass();
/**
* Model tests for FileSchemaTestClass
*/
@Test
- public void testFileSchemaTestClass() {
+ void testFileSchemaTestClass() {
// TODO: test FileSchemaTestClass
}
/**
- * Test the property 'file'
+ * Test the property '_file'
*/
@Test
- public void fileTest() {
- // TODO: test file
+ void _fileTest() {
+ // TODO: test _file
}
/**
* Test the property 'files'
*/
@Test
- public void filesTest() {
+ void filesTest() {
// TODO: test files
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/FormatTestTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/FormatTestTest.java
index 324f11ac458..bcdcaf9dd06 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/FormatTestTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/FormatTestTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,30 +18,27 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.File;
import java.io.IOException;
import java.math.BigDecimal;
-import java.util.UUID;
import java.time.LocalDate;
import java.time.OffsetDateTime;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import java.util.UUID;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for FormatTest
*/
-public class FormatTestTest {
+class FormatTestTest {
private final FormatTest model = new FormatTest();
/**
* Model tests for FormatTest
*/
@Test
- public void testFormatTest() {
+ void testFormatTest() {
// TODO: test FormatTest
}
@@ -49,7 +46,7 @@ public class FormatTestTest {
* Test the property 'integer'
*/
@Test
- public void integerTest() {
+ void integerTest() {
// TODO: test integer
}
@@ -57,7 +54,7 @@ public class FormatTestTest {
* Test the property 'int32'
*/
@Test
- public void int32Test() {
+ void int32Test() {
// TODO: test int32
}
@@ -65,7 +62,7 @@ public class FormatTestTest {
* Test the property 'int64'
*/
@Test
- public void int64Test() {
+ void int64Test() {
// TODO: test int64
}
@@ -73,7 +70,7 @@ public class FormatTestTest {
* Test the property 'number'
*/
@Test
- public void numberTest() {
+ void numberTest() {
// TODO: test number
}
@@ -81,7 +78,7 @@ public class FormatTestTest {
* Test the property '_float'
*/
@Test
- public void _floatTest() {
+ void _floatTest() {
// TODO: test _float
}
@@ -89,7 +86,7 @@ public class FormatTestTest {
* Test the property '_double'
*/
@Test
- public void _doubleTest() {
+ void _doubleTest() {
// TODO: test _double
}
@@ -97,7 +94,7 @@ public class FormatTestTest {
* Test the property 'string'
*/
@Test
- public void stringTest() {
+ void stringTest() {
// TODO: test string
}
@@ -105,7 +102,7 @@ public class FormatTestTest {
* Test the property '_byte'
*/
@Test
- public void _byteTest() {
+ void _byteTest() {
// TODO: test _byte
}
@@ -113,7 +110,7 @@ public class FormatTestTest {
* Test the property 'binary'
*/
@Test
- public void binaryTest() {
+ void binaryTest() {
// TODO: test binary
}
@@ -121,7 +118,7 @@ public class FormatTestTest {
* Test the property 'date'
*/
@Test
- public void dateTest() {
+ void dateTest() {
// TODO: test date
}
@@ -129,7 +126,7 @@ public class FormatTestTest {
* Test the property 'dateTime'
*/
@Test
- public void dateTimeTest() {
+ void dateTimeTest() {
// TODO: test dateTime
}
@@ -137,7 +134,7 @@ public class FormatTestTest {
* Test the property 'uuid'
*/
@Test
- public void uuidTest() {
+ void uuidTest() {
// TODO: test uuid
}
@@ -145,8 +142,16 @@ public class FormatTestTest {
* Test the property 'password'
*/
@Test
- public void passwordTest() {
+ void passwordTest() {
// TODO: test password
}
+ /**
+ * Test the property 'bigDecimal'
+ */
+ @Test
+ void bigDecimalTest() {
+ // TODO: test bigDecimal
+ }
+
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java
index d854c0c9daf..01be6b15413 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for HasOnlyReadOnly
*/
-public class HasOnlyReadOnlyTest {
+class HasOnlyReadOnlyTest {
private final HasOnlyReadOnly model = new HasOnlyReadOnly();
/**
* Model tests for HasOnlyReadOnly
*/
@Test
- public void testHasOnlyReadOnly() {
+ void testHasOnlyReadOnly() {
// TODO: test HasOnlyReadOnly
}
@@ -44,7 +41,7 @@ public class HasOnlyReadOnlyTest {
* Test the property 'bar'
*/
@Test
- public void barTest() {
+ void barTest() {
// TODO: test bar
}
@@ -52,7 +49,7 @@ public class HasOnlyReadOnlyTest {
* Test the property 'foo'
*/
@Test
- public void fooTest() {
+ void fooTest() {
// TODO: test foo
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/MapTestTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/MapTestTest.java
index 9f78d486659..d9b643e6b43 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/MapTestTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/MapTestTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,28 +18,24 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.HashMap;
-import java.util.List;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for MapTest
*/
-public class MapTestTest {
+class MapTestTest {
private final MapTest model = new MapTest();
/**
* Model tests for MapTest
*/
@Test
- public void testMapTest() {
+ void testMapTest() {
// TODO: test MapTest
}
@@ -47,7 +43,7 @@ public class MapTestTest {
* Test the property 'mapMapOfString'
*/
@Test
- public void mapMapOfStringTest() {
+ void mapMapOfStringTest() {
// TODO: test mapMapOfString
}
@@ -55,7 +51,7 @@ public class MapTestTest {
* Test the property 'mapOfEnumString'
*/
@Test
- public void mapOfEnumStringTest() {
+ void mapOfEnumStringTest() {
// TODO: test mapOfEnumString
}
@@ -63,7 +59,7 @@ public class MapTestTest {
* Test the property 'directMap'
*/
@Test
- public void directMapTest() {
+ void directMapTest() {
// TODO: test directMap
}
@@ -71,7 +67,7 @@ public class MapTestTest {
* Test the property 'indirectMap'
*/
@Test
- public void indirectMapTest() {
+ void indirectMapTest() {
// TODO: test indirectMap
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java
index af2d1b2db30..0d57da0126e 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,31 +18,27 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
+import java.time.OffsetDateTime;
import java.util.HashMap;
-import java.util.List;
import java.util.Map;
import java.util.UUID;
import org.openapitools.client.model.Animal;
-import java.time.OffsetDateTime;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for MixedPropertiesAndAdditionalPropertiesClass
*/
-public class MixedPropertiesAndAdditionalPropertiesClassTest {
+class MixedPropertiesAndAdditionalPropertiesClassTest {
private final MixedPropertiesAndAdditionalPropertiesClass model = new MixedPropertiesAndAdditionalPropertiesClass();
/**
* Model tests for MixedPropertiesAndAdditionalPropertiesClass
*/
@Test
- public void testMixedPropertiesAndAdditionalPropertiesClass() {
+ void testMixedPropertiesAndAdditionalPropertiesClass() {
// TODO: test MixedPropertiesAndAdditionalPropertiesClass
}
@@ -50,7 +46,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'uuid'
*/
@Test
- public void uuidTest() {
+ void uuidTest() {
// TODO: test uuid
}
@@ -58,7 +54,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'dateTime'
*/
@Test
- public void dateTimeTest() {
+ void dateTimeTest() {
// TODO: test dateTime
}
@@ -66,7 +62,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'map'
*/
@Test
- public void mapTest() {
+ void mapTest() {
// TODO: test map
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/Model200ResponseTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/Model200ResponseTest.java
index dcea5877334..ecae6e0f437 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/Model200ResponseTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/Model200ResponseTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Model200Response
*/
-public class Model200ResponseTest {
+class Model200ResponseTest {
private final Model200Response model = new Model200Response();
/**
* Model tests for Model200Response
*/
@Test
- public void testModel200Response() {
+ void testModel200Response() {
// TODO: test Model200Response
}
@@ -44,7 +41,7 @@ public class Model200ResponseTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
@@ -52,7 +49,7 @@ public class Model200ResponseTest {
* Test the property 'propertyClass'
*/
@Test
- public void propertyClassTest() {
+ void propertyClassTest() {
// TODO: test propertyClass
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java
index 46b8648fdcc..bb4aa91a78c 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelApiResponse
*/
-public class ModelApiResponseTest {
+class ModelApiResponseTest {
private final ModelApiResponse model = new ModelApiResponse();
/**
* Model tests for ModelApiResponse
*/
@Test
- public void testModelApiResponse() {
+ void testModelApiResponse() {
// TODO: test ModelApiResponse
}
@@ -44,7 +41,7 @@ public class ModelApiResponseTest {
* Test the property 'code'
*/
@Test
- public void codeTest() {
+ void codeTest() {
// TODO: test code
}
@@ -52,7 +49,7 @@ public class ModelApiResponseTest {
* Test the property 'type'
*/
@Test
- public void typeTest() {
+ void typeTest() {
// TODO: test type
}
@@ -60,7 +57,7 @@ public class ModelApiResponseTest {
* Test the property 'message'
*/
@Test
- public void messageTest() {
+ void messageTest() {
// TODO: test message
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ModelFileTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ModelFileTest.java
index 132012d4c38..973730324cc 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ModelFileTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ModelFileTest.java
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelFile
*/
-public class ModelFileTest {
+class ModelFileTest {
private final ModelFile model = new ModelFile();
/**
* Model tests for ModelFile
*/
@Test
- public void testModelFile() {
+ void testModelFile() {
// TODO: test ModelFile
}
@@ -44,7 +41,7 @@ public class ModelFileTest {
* Test the property 'sourceURI'
*/
@Test
- public void sourceURITest() {
+ void sourceURITest() {
// TODO: test sourceURI
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ModelListTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ModelListTest.java
index d3ed2075e9a..bdba8c46a91 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ModelListTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ModelListTest.java
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelList
*/
-public class ModelListTest {
+class ModelListTest {
private final ModelList model = new ModelList();
/**
* Model tests for ModelList
*/
@Test
- public void testModelList() {
+ void testModelList() {
// TODO: test ModelList
}
@@ -44,7 +41,7 @@ public class ModelListTest {
* Test the property '_123list'
*/
@Test
- public void _123listTest() {
+ void _123listTest() {
// TODO: test _123list
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ModelReturnTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ModelReturnTest.java
index 4135ead5686..ae4eaf6295f 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ModelReturnTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ModelReturnTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelReturn
*/
-public class ModelReturnTest {
+class ModelReturnTest {
private final ModelReturn model = new ModelReturn();
/**
* Model tests for ModelReturn
*/
@Test
- public void testModelReturn() {
+ void testModelReturn() {
// TODO: test ModelReturn
}
@@ -44,7 +41,7 @@ public class ModelReturnTest {
* Test the property '_return'
*/
@Test
- public void _returnTest() {
+ void _returnTest() {
// TODO: test _return
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/NameTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/NameTest.java
index bdc04b000c1..f35cf4746e5 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/NameTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/NameTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Name
*/
-public class NameTest {
+class NameTest {
private final Name model = new Name();
/**
* Model tests for Name
*/
@Test
- public void testName() {
+ void testName() {
// TODO: test Name
}
@@ -44,7 +41,7 @@ public class NameTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
@@ -52,7 +49,7 @@ public class NameTest {
* Test the property 'snakeCase'
*/
@Test
- public void snakeCaseTest() {
+ void snakeCaseTest() {
// TODO: test snakeCase
}
@@ -60,7 +57,7 @@ public class NameTest {
* Test the property 'property'
*/
@Test
- public void propertyTest() {
+ void propertyTest() {
// TODO: test property
}
@@ -68,7 +65,7 @@ public class NameTest {
* Test the property '_123number'
*/
@Test
- public void _123numberTest() {
+ void _123numberTest() {
// TODO: test _123number
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/NumberOnlyTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/NumberOnlyTest.java
index 214a6d4538d..16ed327afed 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/NumberOnlyTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/NumberOnlyTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,26 +18,23 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for NumberOnly
*/
-public class NumberOnlyTest {
+class NumberOnlyTest {
private final NumberOnly model = new NumberOnly();
/**
* Model tests for NumberOnly
*/
@Test
- public void testNumberOnly() {
+ void testNumberOnly() {
// TODO: test NumberOnly
}
@@ -45,7 +42,7 @@ public class NumberOnlyTest {
* Test the property 'justNumber'
*/
@Test
- public void justNumberTest() {
+ void justNumberTest() {
// TODO: test justNumber
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/OrderTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/OrderTest.java
index 266bb3290d5..439814c48b1 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/OrderTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/OrderTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,26 +18,23 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.time.OffsetDateTime;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Order
*/
-public class OrderTest {
+class OrderTest {
private final Order model = new Order();
/**
* Model tests for Order
*/
@Test
- public void testOrder() {
+ void testOrder() {
// TODO: test Order
}
@@ -45,7 +42,7 @@ public class OrderTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -53,7 +50,7 @@ public class OrderTest {
* Test the property 'petId'
*/
@Test
- public void petIdTest() {
+ void petIdTest() {
// TODO: test petId
}
@@ -61,7 +58,7 @@ public class OrderTest {
* Test the property 'quantity'
*/
@Test
- public void quantityTest() {
+ void quantityTest() {
// TODO: test quantity
}
@@ -69,7 +66,7 @@ public class OrderTest {
* Test the property 'shipDate'
*/
@Test
- public void shipDateTest() {
+ void shipDateTest() {
// TODO: test shipDate
}
@@ -77,7 +74,7 @@ public class OrderTest {
* Test the property 'status'
*/
@Test
- public void statusTest() {
+ void statusTest() {
// TODO: test status
}
@@ -85,7 +82,7 @@ public class OrderTest {
* Test the property 'complete'
*/
@Test
- public void completeTest() {
+ void completeTest() {
// TODO: test complete
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/OuterCompositeTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/OuterCompositeTest.java
index 710bfedd580..cf76f8e58d0 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/OuterCompositeTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/OuterCompositeTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,26 +18,23 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for OuterComposite
*/
-public class OuterCompositeTest {
+class OuterCompositeTest {
private final OuterComposite model = new OuterComposite();
/**
* Model tests for OuterComposite
*/
@Test
- public void testOuterComposite() {
+ void testOuterComposite() {
// TODO: test OuterComposite
}
@@ -45,7 +42,7 @@ public class OuterCompositeTest {
* Test the property 'myNumber'
*/
@Test
- public void myNumberTest() {
+ void myNumberTest() {
// TODO: test myNumber
}
@@ -53,7 +50,7 @@ public class OuterCompositeTest {
* Test the property 'myString'
*/
@Test
- public void myStringTest() {
+ void myStringTest() {
// TODO: test myString
}
@@ -61,7 +58,7 @@ public class OuterCompositeTest {
* Test the property 'myBoolean'
*/
@Test
- public void myBooleanTest() {
+ void myBooleanTest() {
// TODO: test myBoolean
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/OuterEnumTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/OuterEnumTest.java
index 064f84b3ff6..4110989633b 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/OuterEnumTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/OuterEnumTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -14,20 +14,19 @@
package org.openapitools.client.model;
import com.google.gson.annotations.SerializedName;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for OuterEnum
*/
-public class OuterEnumTest {
+class OuterEnumTest {
/**
* Model tests for OuterEnum
*/
@Test
- public void testOuterEnum() {
+ void testOuterEnum() {
// TODO: test OuterEnum
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/PetTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/PetTest.java
index 4e8e4c65827..82448ec2368 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/PetTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/PetTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,29 +18,29 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.LinkedHashSet;
import java.util.List;
+import java.util.Set;
import org.openapitools.client.model.Category;
import org.openapitools.client.model.Tag;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Pet
*/
-public class PetTest {
+class PetTest {
private final Pet model = new Pet();
/**
* Model tests for Pet
*/
@Test
- public void testPet() {
+ void testPet() {
// TODO: test Pet
}
@@ -48,7 +48,7 @@ public class PetTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -56,7 +56,7 @@ public class PetTest {
* Test the property 'category'
*/
@Test
- public void categoryTest() {
+ void categoryTest() {
// TODO: test category
}
@@ -64,7 +64,7 @@ public class PetTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
@@ -72,7 +72,7 @@ public class PetTest {
* Test the property 'photoUrls'
*/
@Test
- public void photoUrlsTest() {
+ void photoUrlsTest() {
// TODO: test photoUrls
}
@@ -80,7 +80,7 @@ public class PetTest {
* Test the property 'tags'
*/
@Test
- public void tagsTest() {
+ void tagsTest() {
// TODO: test tags
}
@@ -88,7 +88,7 @@ public class PetTest {
* Test the property 'status'
*/
@Test
- public void statusTest() {
+ void statusTest() {
// TODO: test status
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java
index c89b608f609..72101f74b61 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ReadOnlyFirst
*/
-public class ReadOnlyFirstTest {
+class ReadOnlyFirstTest {
private final ReadOnlyFirst model = new ReadOnlyFirst();
/**
* Model tests for ReadOnlyFirst
*/
@Test
- public void testReadOnlyFirst() {
+ void testReadOnlyFirst() {
// TODO: test ReadOnlyFirst
}
@@ -44,7 +41,7 @@ public class ReadOnlyFirstTest {
* Test the property 'bar'
*/
@Test
- public void barTest() {
+ void barTest() {
// TODO: test bar
}
@@ -52,7 +49,7 @@ public class ReadOnlyFirstTest {
* Test the property 'baz'
*/
@Test
- public void bazTest() {
+ void bazTest() {
// TODO: test baz
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java
index d058c884e49..dfc2065188d 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for SpecialModelName
*/
-public class SpecialModelNameTest {
+class SpecialModelNameTest {
private final SpecialModelName model = new SpecialModelName();
/**
* Model tests for SpecialModelName
*/
@Test
- public void testSpecialModelName() {
+ void testSpecialModelName() {
// TODO: test SpecialModelName
}
@@ -44,7 +41,7 @@ public class SpecialModelNameTest {
* Test the property '$specialPropertyName'
*/
@Test
- public void $specialPropertyNameTest() {
+ void $specialPropertyNameTest() {
// TODO: test $specialPropertyName
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/TagTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/TagTest.java
index 27acc7ce8e7..36eea1ddb7b 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/TagTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/TagTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Tag
*/
-public class TagTest {
+class TagTest {
private final Tag model = new Tag();
/**
* Model tests for Tag
*/
@Test
- public void testTag() {
+ void testTag() {
// TODO: test Tag
}
@@ -44,7 +41,7 @@ public class TagTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -52,7 +49,7 @@ public class TagTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java
index f120407395a..3f8ac3d4a3f 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,28 +18,26 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for TypeHolderDefault
*/
-public class TypeHolderDefaultTest {
+class TypeHolderDefaultTest {
private final TypeHolderDefault model = new TypeHolderDefault();
/**
* Model tests for TypeHolderDefault
*/
@Test
- public void testTypeHolderDefault() {
+ void testTypeHolderDefault() {
// TODO: test TypeHolderDefault
}
@@ -47,7 +45,7 @@ public class TypeHolderDefaultTest {
* Test the property 'stringItem'
*/
@Test
- public void stringItemTest() {
+ void stringItemTest() {
// TODO: test stringItem
}
@@ -55,7 +53,7 @@ public class TypeHolderDefaultTest {
* Test the property 'numberItem'
*/
@Test
- public void numberItemTest() {
+ void numberItemTest() {
// TODO: test numberItem
}
@@ -63,7 +61,7 @@ public class TypeHolderDefaultTest {
* Test the property 'integerItem'
*/
@Test
- public void integerItemTest() {
+ void integerItemTest() {
// TODO: test integerItem
}
@@ -71,7 +69,7 @@ public class TypeHolderDefaultTest {
* Test the property 'boolItem'
*/
@Test
- public void boolItemTest() {
+ void boolItemTest() {
// TODO: test boolItem
}
@@ -79,7 +77,7 @@ public class TypeHolderDefaultTest {
* Test the property 'arrayItem'
*/
@Test
- public void arrayItemTest() {
+ void arrayItemTest() {
// TODO: test arrayItem
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java
index 5e99dff0cae..e0a7a0d614c 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,28 +18,26 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for TypeHolderExample
*/
-public class TypeHolderExampleTest {
+class TypeHolderExampleTest {
private final TypeHolderExample model = new TypeHolderExample();
/**
* Model tests for TypeHolderExample
*/
@Test
- public void testTypeHolderExample() {
+ void testTypeHolderExample() {
// TODO: test TypeHolderExample
}
@@ -47,7 +45,7 @@ public class TypeHolderExampleTest {
* Test the property 'stringItem'
*/
@Test
- public void stringItemTest() {
+ void stringItemTest() {
// TODO: test stringItem
}
@@ -55,15 +53,23 @@ public class TypeHolderExampleTest {
* Test the property 'numberItem'
*/
@Test
- public void numberItemTest() {
+ void numberItemTest() {
// TODO: test numberItem
}
+ /**
+ * Test the property 'floatItem'
+ */
+ @Test
+ void floatItemTest() {
+ // TODO: test floatItem
+ }
+
/**
* Test the property 'integerItem'
*/
@Test
- public void integerItemTest() {
+ void integerItemTest() {
// TODO: test integerItem
}
@@ -71,7 +77,7 @@ public class TypeHolderExampleTest {
* Test the property 'boolItem'
*/
@Test
- public void boolItemTest() {
+ void boolItemTest() {
// TODO: test boolItem
}
@@ -79,7 +85,7 @@ public class TypeHolderExampleTest {
* Test the property 'arrayItem'
*/
@Test
- public void arrayItemTest() {
+ void arrayItemTest() {
// TODO: test arrayItem
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/UserTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/UserTest.java
index da1c9bda4b5..5163783cfdc 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/UserTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/UserTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for User
*/
-public class UserTest {
+class UserTest {
private final User model = new User();
/**
* Model tests for User
*/
@Test
- public void testUser() {
+ void testUser() {
// TODO: test User
}
@@ -44,7 +41,7 @@ public class UserTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -52,7 +49,7 @@ public class UserTest {
* Test the property 'username'
*/
@Test
- public void usernameTest() {
+ void usernameTest() {
// TODO: test username
}
@@ -60,7 +57,7 @@ public class UserTest {
* Test the property 'firstName'
*/
@Test
- public void firstNameTest() {
+ void firstNameTest() {
// TODO: test firstName
}
@@ -68,7 +65,7 @@ public class UserTest {
* Test the property 'lastName'
*/
@Test
- public void lastNameTest() {
+ void lastNameTest() {
// TODO: test lastName
}
@@ -76,7 +73,7 @@ public class UserTest {
* Test the property 'email'
*/
@Test
- public void emailTest() {
+ void emailTest() {
// TODO: test email
}
@@ -84,7 +81,7 @@ public class UserTest {
* Test the property 'password'
*/
@Test
- public void passwordTest() {
+ void passwordTest() {
// TODO: test password
}
@@ -92,7 +89,7 @@ public class UserTest {
* Test the property 'phone'
*/
@Test
- public void phoneTest() {
+ void phoneTest() {
// TODO: test phone
}
@@ -100,7 +97,7 @@ public class UserTest {
* Test the property 'userStatus'
*/
@Test
- public void userStatusTest() {
+ void userStatusTest() {
// TODO: test userStatus
}
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/XmlItemTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/XmlItemTest.java
index 5e861e18621..3cfe59d203c 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/XmlItemTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/model/XmlItemTest.java
@@ -2,7 +2,7 @@
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
- * OpenAPI spec version: 1.0.0
+ * The version of the OpenAPI document: 1.0.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,28 +18,26 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for XmlItem
*/
-public class XmlItemTest {
+class XmlItemTest {
private final XmlItem model = new XmlItem();
/**
* Model tests for XmlItem
*/
@Test
- public void testXmlItem() {
+ void testXmlItem() {
// TODO: test XmlItem
}
@@ -47,7 +45,7 @@ public class XmlItemTest {
* Test the property 'attributeString'
*/
@Test
- public void attributeStringTest() {
+ void attributeStringTest() {
// TODO: test attributeString
}
@@ -55,7 +53,7 @@ public class XmlItemTest {
* Test the property 'attributeNumber'
*/
@Test
- public void attributeNumberTest() {
+ void attributeNumberTest() {
// TODO: test attributeNumber
}
@@ -63,7 +61,7 @@ public class XmlItemTest {
* Test the property 'attributeInteger'
*/
@Test
- public void attributeIntegerTest() {
+ void attributeIntegerTest() {
// TODO: test attributeInteger
}
@@ -71,7 +69,7 @@ public class XmlItemTest {
* Test the property 'attributeBoolean'
*/
@Test
- public void attributeBooleanTest() {
+ void attributeBooleanTest() {
// TODO: test attributeBoolean
}
@@ -79,7 +77,7 @@ public class XmlItemTest {
* Test the property 'wrappedArray'
*/
@Test
- public void wrappedArrayTest() {
+ void wrappedArrayTest() {
// TODO: test wrappedArray
}
@@ -87,7 +85,7 @@ public class XmlItemTest {
* Test the property 'nameString'
*/
@Test
- public void nameStringTest() {
+ void nameStringTest() {
// TODO: test nameString
}
@@ -95,7 +93,7 @@ public class XmlItemTest {
* Test the property 'nameNumber'
*/
@Test
- public void nameNumberTest() {
+ void nameNumberTest() {
// TODO: test nameNumber
}
@@ -103,7 +101,7 @@ public class XmlItemTest {
* Test the property 'nameInteger'
*/
@Test
- public void nameIntegerTest() {
+ void nameIntegerTest() {
// TODO: test nameInteger
}
@@ -111,7 +109,7 @@ public class XmlItemTest {
* Test the property 'nameBoolean'
*/
@Test
- public void nameBooleanTest() {
+ void nameBooleanTest() {
// TODO: test nameBoolean
}
@@ -119,7 +117,7 @@ public class XmlItemTest {
* Test the property 'nameArray'
*/
@Test
- public void nameArrayTest() {
+ void nameArrayTest() {
// TODO: test nameArray
}
@@ -127,7 +125,7 @@ public class XmlItemTest {
* Test the property 'nameWrappedArray'
*/
@Test
- public void nameWrappedArrayTest() {
+ void nameWrappedArrayTest() {
// TODO: test nameWrappedArray
}
@@ -135,7 +133,7 @@ public class XmlItemTest {
* Test the property 'prefixString'
*/
@Test
- public void prefixStringTest() {
+ void prefixStringTest() {
// TODO: test prefixString
}
@@ -143,7 +141,7 @@ public class XmlItemTest {
* Test the property 'prefixNumber'
*/
@Test
- public void prefixNumberTest() {
+ void prefixNumberTest() {
// TODO: test prefixNumber
}
@@ -151,7 +149,7 @@ public class XmlItemTest {
* Test the property 'prefixInteger'
*/
@Test
- public void prefixIntegerTest() {
+ void prefixIntegerTest() {
// TODO: test prefixInteger
}
@@ -159,7 +157,7 @@ public class XmlItemTest {
* Test the property 'prefixBoolean'
*/
@Test
- public void prefixBooleanTest() {
+ void prefixBooleanTest() {
// TODO: test prefixBoolean
}
@@ -167,7 +165,7 @@ public class XmlItemTest {
* Test the property 'prefixArray'
*/
@Test
- public void prefixArrayTest() {
+ void prefixArrayTest() {
// TODO: test prefixArray
}
@@ -175,7 +173,7 @@ public class XmlItemTest {
* Test the property 'prefixWrappedArray'
*/
@Test
- public void prefixWrappedArrayTest() {
+ void prefixWrappedArrayTest() {
// TODO: test prefixWrappedArray
}
@@ -183,7 +181,7 @@ public class XmlItemTest {
* Test the property 'namespaceString'
*/
@Test
- public void namespaceStringTest() {
+ void namespaceStringTest() {
// TODO: test namespaceString
}
@@ -191,7 +189,7 @@ public class XmlItemTest {
* Test the property 'namespaceNumber'
*/
@Test
- public void namespaceNumberTest() {
+ void namespaceNumberTest() {
// TODO: test namespaceNumber
}
@@ -199,7 +197,7 @@ public class XmlItemTest {
* Test the property 'namespaceInteger'
*/
@Test
- public void namespaceIntegerTest() {
+ void namespaceIntegerTest() {
// TODO: test namespaceInteger
}
@@ -207,7 +205,7 @@ public class XmlItemTest {
* Test the property 'namespaceBoolean'
*/
@Test
- public void namespaceBooleanTest() {
+ void namespaceBooleanTest() {
// TODO: test namespaceBoolean
}
@@ -215,7 +213,7 @@ public class XmlItemTest {
* Test the property 'namespaceArray'
*/
@Test
- public void namespaceArrayTest() {
+ void namespaceArrayTest() {
// TODO: test namespaceArray
}
@@ -223,56 +221,56 @@ public class XmlItemTest {
* Test the property 'namespaceWrappedArray'
*/
@Test
- public void namespaceWrappedArrayTest() {
+ void namespaceWrappedArrayTest() {
// TODO: test namespaceWrappedArray
}
/**
- * Test the property 'prefixNamespaceString'
+ * Test the property 'prefixNsString'
*/
@Test
- public void prefixNamespaceStringTest() {
- // TODO: test prefixNamespaceString
+ void prefixNsStringTest() {
+ // TODO: test prefixNsString
}
/**
- * Test the property 'prefixNamespaceNumber'
+ * Test the property 'prefixNsNumber'
*/
@Test
- public void prefixNamespaceNumberTest() {
- // TODO: test prefixNamespaceNumber
+ void prefixNsNumberTest() {
+ // TODO: test prefixNsNumber
}
/**
- * Test the property 'prefixNamespaceInteger'
+ * Test the property 'prefixNsInteger'
*/
@Test
- public void prefixNamespaceIntegerTest() {
- // TODO: test prefixNamespaceInteger
+ void prefixNsIntegerTest() {
+ // TODO: test prefixNsInteger
}
/**
- * Test the property 'prefixNamespaceBoolean'
+ * Test the property 'prefixNsBoolean'
*/
@Test
- public void prefixNamespaceBooleanTest() {
- // TODO: test prefixNamespaceBoolean
+ void prefixNsBooleanTest() {
+ // TODO: test prefixNsBoolean
}
/**
- * Test the property 'prefixNamespaceArray'
+ * Test the property 'prefixNsArray'
*/
@Test
- public void prefixNamespaceArrayTest() {
- // TODO: test prefixNamespaceArray
+ void prefixNsArrayTest() {
+ // TODO: test prefixNsArray
}
/**
- * Test the property 'prefixNamespaceWrappedArray'
+ * Test the property 'prefixNsWrappedArray'
*/
@Test
- public void prefixNamespaceWrappedArrayTest() {
- // TODO: test prefixNamespaceWrappedArray
+ void prefixNsWrappedArrayTest() {
+ // TODO: test prefixNsWrappedArray
}
}
diff --git a/samples/client/petstore/java/retrofit2rx3/build.gradle b/samples/client/petstore/java/retrofit2rx3/build.gradle
index 29bfb6738e9..5dd9b794a14 100644
--- a/samples/client/petstore/java/retrofit2rx3/build.gradle
+++ b/samples/client/petstore/java/retrofit2rx3/build.gradle
@@ -101,7 +101,7 @@ ext {
retrofit_version = "2.3.0"
jakarta_annotation_version = "1.3.5"
swagger_annotations_version = "1.5.22"
- junit_version = "4.13.2"
+ junit_version = "5.10.3"
rx_java_version = "3.0.4"
json_fire_version = "1.9.0"
}
@@ -119,5 +119,5 @@ dependencies {
}
implementation "io.gsonfire:gson-fire:$json_fire_version"
implementation "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version"
- testImplementation "junit:junit:$junit_version"
+ testImplementation "org.junit.jupiter:junit-jupiter-api:$junit_version"
}
diff --git a/samples/client/petstore/java/retrofit2rx3/build.sbt b/samples/client/petstore/java/retrofit2rx3/build.sbt
index d95ca2d5e89..55c87017344 100644
--- a/samples/client/petstore/java/retrofit2rx3/build.sbt
+++ b/samples/client/petstore/java/retrofit2rx3/build.sbt
@@ -18,7 +18,7 @@ lazy val root = (project in file(".")).
"org.apache.oltu.oauth2" % "org.apache.oltu.oauth2.client" % "1.0.1" % "compile",
"io.gsonfire" % "gson-fire" % "1.9.0" % "compile",
"jakarta.annotation" % "jakarta.annotation-api" % "1.3.5" % "compile",
- "junit" % "junit" % "4.13.2" % "test",
+ "org.junit.jupiter" % "junit-jupiter-api" % "5.10.3" % "test",
"com.novocode" % "junit-interface" % "0.11" % "test"
)
)
diff --git a/samples/client/petstore/java/retrofit2rx3/pom.xml b/samples/client/petstore/java/retrofit2rx3/pom.xml
index 5546912ccb1..508fd7747cd 100644
--- a/samples/client/petstore/java/retrofit2rx3/pom.xml
+++ b/samples/client/petstore/java/retrofit2rx3/pom.xml
@@ -259,8 +259,8 @@
- junit
- junit
+ org.junit.jupiter
+ junit-jupiter-api
${junit-version}
test
@@ -276,6 +276,6 @@
3.0.4
1.3.5
1.0.1
- 4.13.2
+ 5.10.3
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java
index d53aa9ca735..ac000a3d22a 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java
@@ -2,9 +2,13 @@ package org.openapitools.client.api;
import org.openapitools.client.ApiClient;
import org.openapitools.client.model.Client;
-import org.junit.Before;
-import org.junit.Test;
+import java.util.UUID;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
@@ -17,7 +21,7 @@ public class AnotherFakeApiTest {
private AnotherFakeApi api;
- @Before
+ @BeforeEach
public void setup() {
api = new ApiClient().createService(AnotherFakeApi.class);
}
@@ -29,8 +33,9 @@ public class AnotherFakeApiTest {
*/
@Test
public void call123testSpecialTagsTest() {
+ UUID uuidTest = null;
Client body = null;
- // Client response = api.call123testSpecialTags(body);
+ // Client response = api.call123testSpecialTags(uuidTest, body);
// TODO: test validations
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/FakeApiTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/FakeApiTest.java
index a18414831d4..896c594ae92 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/FakeApiTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/FakeApiTest.java
@@ -10,9 +10,12 @@ import java.time.OffsetDateTime;
import org.openapitools.client.model.OuterComposite;
import org.openapitools.client.model.User;
import org.openapitools.client.model.XmlItem;
-import org.junit.Before;
-import org.junit.Test;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
@@ -25,7 +28,7 @@ public class FakeApiTest {
private FakeApi api;
- @Before
+ @BeforeEach
public void setup() {
api = new ApiClient().createService(FakeApi.class);
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java
index 6fb41f046ee..3bde7219918 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java
@@ -2,9 +2,12 @@ package org.openapitools.client.api;
import org.openapitools.client.ApiClient;
import org.openapitools.client.model.Client;
-import org.junit.Before;
-import org.junit.Test;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
@@ -17,7 +20,7 @@ public class FakeClassnameTags123ApiTest {
private FakeClassnameTags123Api api;
- @Before
+ @BeforeEach
public void setup() {
api = new ApiClient().createService(FakeClassnameTags123Api.class);
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/PetApiTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/PetApiTest.java
index 5061b45f8c6..c9cf0ff38e4 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/PetApiTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/PetApiTest.java
@@ -5,9 +5,12 @@ import java.io.File;
import org.openapitools.client.model.ModelApiResponse;
import org.openapitools.client.model.Pet;
import java.util.Set;
-import org.junit.Before;
-import org.junit.Test;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
@@ -20,7 +23,7 @@ public class PetApiTest {
private PetApi api;
- @Before
+ @BeforeEach
public void setup() {
api = new ApiClient().createService(PetApi.class);
}
@@ -121,8 +124,8 @@ public class PetApiTest {
public void uploadFileTest() {
Long petId = null;
String additionalMetadata = null;
- File file = null;
- // ModelApiResponse response = api.uploadFile(petId, additionalMetadata, file);
+ File _file = null;
+ // ModelApiResponse response = api.uploadFile(petId, additionalMetadata, _file);
// TODO: test validations
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/StoreApiTest.java
index e02a6df7082..3a00aa1b95e 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -2,9 +2,12 @@ package org.openapitools.client.api;
import org.openapitools.client.ApiClient;
import org.openapitools.client.model.Order;
-import org.junit.Before;
-import org.junit.Test;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
@@ -17,7 +20,7 @@ public class StoreApiTest {
private StoreApi api;
- @Before
+ @BeforeEach
public void setup() {
api = new ApiClient().createService(StoreApi.class);
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/UserApiTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/UserApiTest.java
index 8fb13a93899..a269d4fc6b1 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/UserApiTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/UserApiTest.java
@@ -1,10 +1,14 @@
package org.openapitools.client.api;
import org.openapitools.client.ApiClient;
+import java.time.OffsetDateTime;
import org.openapitools.client.model.User;
-import org.junit.Before;
-import org.junit.Test;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
@@ -17,7 +21,7 @@ public class UserApiTest {
private UserApi api;
- @Before
+ @BeforeEach
public void setup() {
api = new ApiClient().createService(UserApi.class);
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java
index 5507437bbe4..04fa4f5b6d9 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java
@@ -18,27 +18,24 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesAnyType
*/
-public class AdditionalPropertiesAnyTypeTest {
+class AdditionalPropertiesAnyTypeTest {
private final AdditionalPropertiesAnyType model = new AdditionalPropertiesAnyType();
/**
* Model tests for AdditionalPropertiesAnyType
*/
@Test
- public void testAdditionalPropertiesAnyType() {
+ void testAdditionalPropertiesAnyType() {
// TODO: test AdditionalPropertiesAnyType
}
@@ -46,7 +43,7 @@ public class AdditionalPropertiesAnyTypeTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java
index d770842e2c3..80dc3fcbd43 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java
@@ -18,28 +18,25 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesArray
*/
-public class AdditionalPropertiesArrayTest {
+class AdditionalPropertiesArrayTest {
private final AdditionalPropertiesArray model = new AdditionalPropertiesArray();
/**
* Model tests for AdditionalPropertiesArray
*/
@Test
- public void testAdditionalPropertiesArray() {
+ void testAdditionalPropertiesArray() {
// TODO: test AdditionalPropertiesArray
}
@@ -47,7 +44,7 @@ public class AdditionalPropertiesArrayTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java
index 17ad4aa94d8..ca1046a0fc8 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java
@@ -18,27 +18,24 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesBoolean
*/
-public class AdditionalPropertiesBooleanTest {
+class AdditionalPropertiesBooleanTest {
private final AdditionalPropertiesBoolean model = new AdditionalPropertiesBoolean();
/**
* Model tests for AdditionalPropertiesBoolean
*/
@Test
- public void testAdditionalPropertiesBoolean() {
+ void testAdditionalPropertiesBoolean() {
// TODO: test AdditionalPropertiesBoolean
}
@@ -46,7 +43,7 @@ public class AdditionalPropertiesBooleanTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java
index 19f1a8fe7aa..3c34271bf0d 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java
@@ -18,29 +18,26 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesClass
*/
-public class AdditionalPropertiesClassTest {
+class AdditionalPropertiesClassTest {
private final AdditionalPropertiesClass model = new AdditionalPropertiesClass();
/**
* Model tests for AdditionalPropertiesClass
*/
@Test
- public void testAdditionalPropertiesClass() {
+ void testAdditionalPropertiesClass() {
// TODO: test AdditionalPropertiesClass
}
@@ -48,7 +45,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapString'
*/
@Test
- public void mapStringTest() {
+ void mapStringTest() {
// TODO: test mapString
}
@@ -56,7 +53,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapNumber'
*/
@Test
- public void mapNumberTest() {
+ void mapNumberTest() {
// TODO: test mapNumber
}
@@ -64,7 +61,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapInteger'
*/
@Test
- public void mapIntegerTest() {
+ void mapIntegerTest() {
// TODO: test mapInteger
}
@@ -72,7 +69,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapBoolean'
*/
@Test
- public void mapBooleanTest() {
+ void mapBooleanTest() {
// TODO: test mapBoolean
}
@@ -80,7 +77,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapArrayInteger'
*/
@Test
- public void mapArrayIntegerTest() {
+ void mapArrayIntegerTest() {
// TODO: test mapArrayInteger
}
@@ -88,7 +85,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapArrayAnytype'
*/
@Test
- public void mapArrayAnytypeTest() {
+ void mapArrayAnytypeTest() {
// TODO: test mapArrayAnytype
}
@@ -96,7 +93,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapMapString'
*/
@Test
- public void mapMapStringTest() {
+ void mapMapStringTest() {
// TODO: test mapMapString
}
@@ -104,7 +101,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapMapAnytype'
*/
@Test
- public void mapMapAnytypeTest() {
+ void mapMapAnytypeTest() {
// TODO: test mapMapAnytype
}
@@ -112,7 +109,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'anytype1'
*/
@Test
- public void anytype1Test() {
+ void anytype1Test() {
// TODO: test anytype1
}
@@ -120,7 +117,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'anytype2'
*/
@Test
- public void anytype2Test() {
+ void anytype2Test() {
// TODO: test anytype2
}
@@ -128,7 +125,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'anytype3'
*/
@Test
- public void anytype3Test() {
+ void anytype3Test() {
// TODO: test anytype3
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java
index e6efde8fed9..e9f37e84ecd 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java
@@ -18,27 +18,24 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesInteger
*/
-public class AdditionalPropertiesIntegerTest {
+class AdditionalPropertiesIntegerTest {
private final AdditionalPropertiesInteger model = new AdditionalPropertiesInteger();
/**
* Model tests for AdditionalPropertiesInteger
*/
@Test
- public void testAdditionalPropertiesInteger() {
+ void testAdditionalPropertiesInteger() {
// TODO: test AdditionalPropertiesInteger
}
@@ -46,7 +43,7 @@ public class AdditionalPropertiesIntegerTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java
index 01433159e0f..3d6ac0eec25 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java
@@ -18,28 +18,25 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesNumber
*/
-public class AdditionalPropertiesNumberTest {
+class AdditionalPropertiesNumberTest {
private final AdditionalPropertiesNumber model = new AdditionalPropertiesNumber();
/**
* Model tests for AdditionalPropertiesNumber
*/
@Test
- public void testAdditionalPropertiesNumber() {
+ void testAdditionalPropertiesNumber() {
// TODO: test AdditionalPropertiesNumber
}
@@ -47,7 +44,7 @@ public class AdditionalPropertiesNumberTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java
index a307b7604d8..47389e5fd54 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java
@@ -18,27 +18,24 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesObject
*/
-public class AdditionalPropertiesObjectTest {
+class AdditionalPropertiesObjectTest {
private final AdditionalPropertiesObject model = new AdditionalPropertiesObject();
/**
* Model tests for AdditionalPropertiesObject
*/
@Test
- public void testAdditionalPropertiesObject() {
+ void testAdditionalPropertiesObject() {
// TODO: test AdditionalPropertiesObject
}
@@ -46,7 +43,7 @@ public class AdditionalPropertiesObjectTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java
index 6a66b95c7b4..162ae6f2edd 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java
@@ -18,27 +18,24 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesString
*/
-public class AdditionalPropertiesStringTest {
+class AdditionalPropertiesStringTest {
private final AdditionalPropertiesString model = new AdditionalPropertiesString();
/**
* Model tests for AdditionalPropertiesString
*/
@Test
- public void testAdditionalPropertiesString() {
+ void testAdditionalPropertiesString() {
// TODO: test AdditionalPropertiesString
}
@@ -46,7 +43,7 @@ public class AdditionalPropertiesStringTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AnimalTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AnimalTest.java
index 340abc2587a..e8508c4319b 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AnimalTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/AnimalTest.java
@@ -18,28 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.openapitools.client.model.BigCat;
-import org.openapitools.client.model.Cat;
-import org.openapitools.client.model.Dog;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Animal
*/
-public class AnimalTest {
+class AnimalTest {
private final Animal model = new Animal();
/**
* Model tests for Animal
*/
@Test
- public void testAnimal() {
+ void testAnimal() {
// TODO: test Animal
}
@@ -47,7 +41,7 @@ public class AnimalTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -55,7 +49,7 @@ public class AnimalTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java
index d0e66d29354..9d8fb3480f6 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java
@@ -18,28 +18,26 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayOfArrayOfNumberOnly
*/
-public class ArrayOfArrayOfNumberOnlyTest {
+class ArrayOfArrayOfNumberOnlyTest {
private final ArrayOfArrayOfNumberOnly model = new ArrayOfArrayOfNumberOnly();
/**
* Model tests for ArrayOfArrayOfNumberOnly
*/
@Test
- public void testArrayOfArrayOfNumberOnly() {
+ void testArrayOfArrayOfNumberOnly() {
// TODO: test ArrayOfArrayOfNumberOnly
}
@@ -47,7 +45,7 @@ public class ArrayOfArrayOfNumberOnlyTest {
* Test the property 'arrayArrayNumber'
*/
@Test
- public void arrayArrayNumberTest() {
+ void arrayArrayNumberTest() {
// TODO: test arrayArrayNumber
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java
index 9afc3397f46..ef70479bb3c 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java
@@ -18,28 +18,26 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayOfNumberOnly
*/
-public class ArrayOfNumberOnlyTest {
+class ArrayOfNumberOnlyTest {
private final ArrayOfNumberOnly model = new ArrayOfNumberOnly();
/**
* Model tests for ArrayOfNumberOnly
*/
@Test
- public void testArrayOfNumberOnly() {
+ void testArrayOfNumberOnly() {
// TODO: test ArrayOfNumberOnly
}
@@ -47,7 +45,7 @@ public class ArrayOfNumberOnlyTest {
* Test the property 'arrayNumber'
*/
@Test
- public void arrayNumberTest() {
+ void arrayNumberTest() {
// TODO: test arrayNumber
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ArrayTestTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ArrayTestTest.java
index fab9a30565f..f5c7ed8752f 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ArrayTestTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ArrayTestTest.java
@@ -18,28 +18,26 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
import org.openapitools.client.model.ReadOnlyFirst;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayTest
*/
-public class ArrayTestTest {
+class ArrayTestTest {
private final ArrayTest model = new ArrayTest();
/**
* Model tests for ArrayTest
*/
@Test
- public void testArrayTest() {
+ void testArrayTest() {
// TODO: test ArrayTest
}
@@ -47,7 +45,7 @@ public class ArrayTestTest {
* Test the property 'arrayOfString'
*/
@Test
- public void arrayOfStringTest() {
+ void arrayOfStringTest() {
// TODO: test arrayOfString
}
@@ -55,7 +53,7 @@ public class ArrayTestTest {
* Test the property 'arrayArrayOfInteger'
*/
@Test
- public void arrayArrayOfIntegerTest() {
+ void arrayArrayOfIntegerTest() {
// TODO: test arrayArrayOfInteger
}
@@ -63,7 +61,7 @@ public class ArrayTestTest {
* Test the property 'arrayArrayOfModel'
*/
@Test
- public void arrayArrayOfModelTest() {
+ void arrayArrayOfModelTest() {
// TODO: test arrayArrayOfModel
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/BigCatTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/BigCatTest.java
index 0949e1385d8..aa1db2031da 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/BigCatTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/BigCatTest.java
@@ -20,21 +20,21 @@ import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
import java.io.IOException;
import org.openapitools.client.model.Cat;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for BigCat
*/
-public class BigCatTest {
+class BigCatTest {
private final BigCat model = new BigCat();
/**
* Model tests for BigCat
*/
@Test
- public void testBigCat() {
+ void testBigCat() {
// TODO: test BigCat
}
@@ -42,7 +42,7 @@ public class BigCatTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -50,7 +50,7 @@ public class BigCatTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
@@ -58,7 +58,7 @@ public class BigCatTest {
* Test the property 'declawed'
*/
@Test
- public void declawedTest() {
+ void declawedTest() {
// TODO: test declawed
}
@@ -66,7 +66,7 @@ public class BigCatTest {
* Test the property 'kind'
*/
@Test
- public void kindTest() {
+ void kindTest() {
// TODO: test kind
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/CapitalizationTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/CapitalizationTest.java
index ced4f48eb5f..eda1830e0c0 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/CapitalizationTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/CapitalizationTest.java
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Capitalization
*/
-public class CapitalizationTest {
+class CapitalizationTest {
private final Capitalization model = new Capitalization();
/**
* Model tests for Capitalization
*/
@Test
- public void testCapitalization() {
+ void testCapitalization() {
// TODO: test Capitalization
}
@@ -44,7 +41,7 @@ public class CapitalizationTest {
* Test the property 'smallCamel'
*/
@Test
- public void smallCamelTest() {
+ void smallCamelTest() {
// TODO: test smallCamel
}
@@ -52,7 +49,7 @@ public class CapitalizationTest {
* Test the property 'capitalCamel'
*/
@Test
- public void capitalCamelTest() {
+ void capitalCamelTest() {
// TODO: test capitalCamel
}
@@ -60,7 +57,7 @@ public class CapitalizationTest {
* Test the property 'smallSnake'
*/
@Test
- public void smallSnakeTest() {
+ void smallSnakeTest() {
// TODO: test smallSnake
}
@@ -68,7 +65,7 @@ public class CapitalizationTest {
* Test the property 'capitalSnake'
*/
@Test
- public void capitalSnakeTest() {
+ void capitalSnakeTest() {
// TODO: test capitalSnake
}
@@ -76,7 +73,7 @@ public class CapitalizationTest {
* Test the property 'scAETHFlowPoints'
*/
@Test
- public void scAETHFlowPointsTest() {
+ void scAETHFlowPointsTest() {
// TODO: test scAETHFlowPoints
}
@@ -84,7 +81,7 @@ public class CapitalizationTest {
* Test the property 'ATT_NAME'
*/
@Test
- public void ATT_NAMETest() {
+ void ATT_NAMETest() {
// TODO: test ATT_NAME
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/CatTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/CatTest.java
index e26c6db5da9..6e38fb46e73 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/CatTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/CatTest.java
@@ -18,27 +18,23 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import org.openapitools.client.model.Animal;
-import org.openapitools.client.model.BigCat;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Cat
*/
-public class CatTest {
+class CatTest {
private final Cat model = new Cat();
/**
* Model tests for Cat
*/
@Test
- public void testCat() {
+ void testCat() {
// TODO: test Cat
}
@@ -46,7 +42,7 @@ public class CatTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -54,7 +50,7 @@ public class CatTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
@@ -62,7 +58,7 @@ public class CatTest {
* Test the property 'declawed'
*/
@Test
- public void declawedTest() {
+ void declawedTest() {
// TODO: test declawed
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/CategoryTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/CategoryTest.java
index a6efa6e1fbc..4ac631b1e8c 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/CategoryTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/CategoryTest.java
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Category
*/
-public class CategoryTest {
+class CategoryTest {
private final Category model = new Category();
/**
* Model tests for Category
*/
@Test
- public void testCategory() {
+ void testCategory() {
// TODO: test Category
}
@@ -44,7 +41,7 @@ public class CategoryTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -52,7 +49,7 @@ public class CategoryTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ClassModelTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ClassModelTest.java
index 1233feec65e..aa381b709d9 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ClassModelTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ClassModelTest.java
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ClassModel
*/
-public class ClassModelTest {
+class ClassModelTest {
private final ClassModel model = new ClassModel();
/**
* Model tests for ClassModel
*/
@Test
- public void testClassModel() {
+ void testClassModel() {
// TODO: test ClassModel
}
@@ -44,7 +41,7 @@ public class ClassModelTest {
* Test the property 'propertyClass'
*/
@Test
- public void propertyClassTest() {
+ void propertyClassTest() {
// TODO: test propertyClass
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ClientTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ClientTest.java
index 456fab74c4d..95f0e2d39d2 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ClientTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ClientTest.java
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Client
*/
-public class ClientTest {
+class ClientTest {
private final Client model = new Client();
/**
* Model tests for Client
*/
@Test
- public void testClient() {
+ void testClient() {
// TODO: test Client
}
@@ -44,7 +41,7 @@ public class ClientTest {
* Test the property 'client'
*/
@Test
- public void clientTest() {
+ void clientTest() {
// TODO: test client
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/DogTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/DogTest.java
index b2e427523bc..f65ec9fbebe 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/DogTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/DogTest.java
@@ -18,26 +18,23 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import org.openapitools.client.model.Animal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Dog
*/
-public class DogTest {
+class DogTest {
private final Dog model = new Dog();
/**
* Model tests for Dog
*/
@Test
- public void testDog() {
+ void testDog() {
// TODO: test Dog
}
@@ -45,7 +42,7 @@ public class DogTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -53,7 +50,7 @@ public class DogTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
@@ -61,7 +58,7 @@ public class DogTest {
* Test the property 'breed'
*/
@Test
- public void breedTest() {
+ void breedTest() {
// TODO: test breed
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/EnumArraysTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/EnumArraysTest.java
index c25b05e9f0d..1175d0a96ec 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/EnumArraysTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/EnumArraysTest.java
@@ -18,27 +18,25 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for EnumArrays
*/
-public class EnumArraysTest {
+class EnumArraysTest {
private final EnumArrays model = new EnumArrays();
/**
* Model tests for EnumArrays
*/
@Test
- public void testEnumArrays() {
+ void testEnumArrays() {
// TODO: test EnumArrays
}
@@ -46,7 +44,7 @@ public class EnumArraysTest {
* Test the property 'justSymbol'
*/
@Test
- public void justSymbolTest() {
+ void justSymbolTest() {
// TODO: test justSymbol
}
@@ -54,7 +52,7 @@ public class EnumArraysTest {
* Test the property 'arrayEnum'
*/
@Test
- public void arrayEnumTest() {
+ void arrayEnumTest() {
// TODO: test arrayEnum
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/EnumClassTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/EnumClassTest.java
index 329454658e3..cb2a9c69498 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/EnumClassTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/EnumClassTest.java
@@ -14,20 +14,19 @@
package org.openapitools.client.model;
import com.google.gson.annotations.SerializedName;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for EnumClass
*/
-public class EnumClassTest {
+class EnumClassTest {
/**
* Model tests for EnumClass
*/
@Test
- public void testEnumClass() {
+ void testEnumClass() {
// TODO: test EnumClass
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/EnumTestTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/EnumTestTest.java
index 8b76ef55606..b097f85302d 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/EnumTestTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/EnumTestTest.java
@@ -18,26 +18,23 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import org.openapitools.client.model.OuterEnum;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for EnumTest
*/
-public class EnumTestTest {
+class EnumTestTest {
private final EnumTest model = new EnumTest();
/**
* Model tests for EnumTest
*/
@Test
- public void testEnumTest() {
+ void testEnumTest() {
// TODO: test EnumTest
}
@@ -45,7 +42,7 @@ public class EnumTestTest {
* Test the property 'enumString'
*/
@Test
- public void enumStringTest() {
+ void enumStringTest() {
// TODO: test enumString
}
@@ -53,7 +50,7 @@ public class EnumTestTest {
* Test the property 'enumStringRequired'
*/
@Test
- public void enumStringRequiredTest() {
+ void enumStringRequiredTest() {
// TODO: test enumStringRequired
}
@@ -61,7 +58,7 @@ public class EnumTestTest {
* Test the property 'enumInteger'
*/
@Test
- public void enumIntegerTest() {
+ void enumIntegerTest() {
// TODO: test enumInteger
}
@@ -69,7 +66,7 @@ public class EnumTestTest {
* Test the property 'enumNumber'
*/
@Test
- public void enumNumberTest() {
+ void enumNumberTest() {
// TODO: test enumNumber
}
@@ -77,7 +74,7 @@ public class EnumTestTest {
* Test the property 'outerEnum'
*/
@Test
- public void outerEnumTest() {
+ void outerEnumTest() {
// TODO: test outerEnum
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java
index 0ca36621208..08d51e19dad 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java
@@ -18,43 +18,42 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.openapitools.client.model.ModelFile;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for FileSchemaTestClass
*/
-public class FileSchemaTestClassTest {
+class FileSchemaTestClassTest {
private final FileSchemaTestClass model = new FileSchemaTestClass();
/**
* Model tests for FileSchemaTestClass
*/
@Test
- public void testFileSchemaTestClass() {
+ void testFileSchemaTestClass() {
// TODO: test FileSchemaTestClass
}
/**
- * Test the property 'file'
+ * Test the property '_file'
*/
@Test
- public void fileTest() {
- // TODO: test file
+ void _fileTest() {
+ // TODO: test _file
}
/**
* Test the property 'files'
*/
@Test
- public void filesTest() {
+ void filesTest() {
// TODO: test files
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/FormatTestTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/FormatTestTest.java
index 9c600e488b5..bcdcaf9dd06 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/FormatTestTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/FormatTestTest.java
@@ -18,30 +18,27 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.File;
import java.io.IOException;
import java.math.BigDecimal;
-import java.util.UUID;
import java.time.LocalDate;
import java.time.OffsetDateTime;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import java.util.UUID;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for FormatTest
*/
-public class FormatTestTest {
+class FormatTestTest {
private final FormatTest model = new FormatTest();
/**
* Model tests for FormatTest
*/
@Test
- public void testFormatTest() {
+ void testFormatTest() {
// TODO: test FormatTest
}
@@ -49,7 +46,7 @@ public class FormatTestTest {
* Test the property 'integer'
*/
@Test
- public void integerTest() {
+ void integerTest() {
// TODO: test integer
}
@@ -57,7 +54,7 @@ public class FormatTestTest {
* Test the property 'int32'
*/
@Test
- public void int32Test() {
+ void int32Test() {
// TODO: test int32
}
@@ -65,7 +62,7 @@ public class FormatTestTest {
* Test the property 'int64'
*/
@Test
- public void int64Test() {
+ void int64Test() {
// TODO: test int64
}
@@ -73,7 +70,7 @@ public class FormatTestTest {
* Test the property 'number'
*/
@Test
- public void numberTest() {
+ void numberTest() {
// TODO: test number
}
@@ -81,7 +78,7 @@ public class FormatTestTest {
* Test the property '_float'
*/
@Test
- public void _floatTest() {
+ void _floatTest() {
// TODO: test _float
}
@@ -89,7 +86,7 @@ public class FormatTestTest {
* Test the property '_double'
*/
@Test
- public void _doubleTest() {
+ void _doubleTest() {
// TODO: test _double
}
@@ -97,7 +94,7 @@ public class FormatTestTest {
* Test the property 'string'
*/
@Test
- public void stringTest() {
+ void stringTest() {
// TODO: test string
}
@@ -105,7 +102,7 @@ public class FormatTestTest {
* Test the property '_byte'
*/
@Test
- public void _byteTest() {
+ void _byteTest() {
// TODO: test _byte
}
@@ -113,7 +110,7 @@ public class FormatTestTest {
* Test the property 'binary'
*/
@Test
- public void binaryTest() {
+ void binaryTest() {
// TODO: test binary
}
@@ -121,7 +118,7 @@ public class FormatTestTest {
* Test the property 'date'
*/
@Test
- public void dateTest() {
+ void dateTest() {
// TODO: test date
}
@@ -129,7 +126,7 @@ public class FormatTestTest {
* Test the property 'dateTime'
*/
@Test
- public void dateTimeTest() {
+ void dateTimeTest() {
// TODO: test dateTime
}
@@ -137,7 +134,7 @@ public class FormatTestTest {
* Test the property 'uuid'
*/
@Test
- public void uuidTest() {
+ void uuidTest() {
// TODO: test uuid
}
@@ -145,7 +142,7 @@ public class FormatTestTest {
* Test the property 'password'
*/
@Test
- public void passwordTest() {
+ void passwordTest() {
// TODO: test password
}
@@ -153,7 +150,7 @@ public class FormatTestTest {
* Test the property 'bigDecimal'
*/
@Test
- public void bigDecimalTest() {
+ void bigDecimalTest() {
// TODO: test bigDecimal
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java
index 0272d7b8000..01be6b15413 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for HasOnlyReadOnly
*/
-public class HasOnlyReadOnlyTest {
+class HasOnlyReadOnlyTest {
private final HasOnlyReadOnly model = new HasOnlyReadOnly();
/**
* Model tests for HasOnlyReadOnly
*/
@Test
- public void testHasOnlyReadOnly() {
+ void testHasOnlyReadOnly() {
// TODO: test HasOnlyReadOnly
}
@@ -44,7 +41,7 @@ public class HasOnlyReadOnlyTest {
* Test the property 'bar'
*/
@Test
- public void barTest() {
+ void barTest() {
// TODO: test bar
}
@@ -52,7 +49,7 @@ public class HasOnlyReadOnlyTest {
* Test the property 'foo'
*/
@Test
- public void fooTest() {
+ void fooTest() {
// TODO: test foo
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/MapTestTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/MapTestTest.java
index f86a1303fc8..d9b643e6b43 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/MapTestTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/MapTestTest.java
@@ -18,28 +18,24 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.HashMap;
-import java.util.List;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for MapTest
*/
-public class MapTestTest {
+class MapTestTest {
private final MapTest model = new MapTest();
/**
* Model tests for MapTest
*/
@Test
- public void testMapTest() {
+ void testMapTest() {
// TODO: test MapTest
}
@@ -47,7 +43,7 @@ public class MapTestTest {
* Test the property 'mapMapOfString'
*/
@Test
- public void mapMapOfStringTest() {
+ void mapMapOfStringTest() {
// TODO: test mapMapOfString
}
@@ -55,7 +51,7 @@ public class MapTestTest {
* Test the property 'mapOfEnumString'
*/
@Test
- public void mapOfEnumStringTest() {
+ void mapOfEnumStringTest() {
// TODO: test mapOfEnumString
}
@@ -63,7 +59,7 @@ public class MapTestTest {
* Test the property 'directMap'
*/
@Test
- public void directMapTest() {
+ void directMapTest() {
// TODO: test directMap
}
@@ -71,7 +67,7 @@ public class MapTestTest {
* Test the property 'indirectMap'
*/
@Test
- public void indirectMapTest() {
+ void indirectMapTest() {
// TODO: test indirectMap
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java
index 3a23e8217ba..0d57da0126e 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java
@@ -18,31 +18,27 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
+import java.time.OffsetDateTime;
import java.util.HashMap;
-import java.util.List;
import java.util.Map;
import java.util.UUID;
import org.openapitools.client.model.Animal;
-import java.time.OffsetDateTime;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for MixedPropertiesAndAdditionalPropertiesClass
*/
-public class MixedPropertiesAndAdditionalPropertiesClassTest {
+class MixedPropertiesAndAdditionalPropertiesClassTest {
private final MixedPropertiesAndAdditionalPropertiesClass model = new MixedPropertiesAndAdditionalPropertiesClass();
/**
* Model tests for MixedPropertiesAndAdditionalPropertiesClass
*/
@Test
- public void testMixedPropertiesAndAdditionalPropertiesClass() {
+ void testMixedPropertiesAndAdditionalPropertiesClass() {
// TODO: test MixedPropertiesAndAdditionalPropertiesClass
}
@@ -50,7 +46,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'uuid'
*/
@Test
- public void uuidTest() {
+ void uuidTest() {
// TODO: test uuid
}
@@ -58,7 +54,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'dateTime'
*/
@Test
- public void dateTimeTest() {
+ void dateTimeTest() {
// TODO: test dateTime
}
@@ -66,7 +62,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'map'
*/
@Test
- public void mapTest() {
+ void mapTest() {
// TODO: test map
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/Model200ResponseTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/Model200ResponseTest.java
index d81fa5a0f66..ecae6e0f437 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/Model200ResponseTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/Model200ResponseTest.java
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Model200Response
*/
-public class Model200ResponseTest {
+class Model200ResponseTest {
private final Model200Response model = new Model200Response();
/**
* Model tests for Model200Response
*/
@Test
- public void testModel200Response() {
+ void testModel200Response() {
// TODO: test Model200Response
}
@@ -44,7 +41,7 @@ public class Model200ResponseTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
@@ -52,7 +49,7 @@ public class Model200ResponseTest {
* Test the property 'propertyClass'
*/
@Test
- public void propertyClassTest() {
+ void propertyClassTest() {
// TODO: test propertyClass
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java
index 91bd8fada26..bb4aa91a78c 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelApiResponse
*/
-public class ModelApiResponseTest {
+class ModelApiResponseTest {
private final ModelApiResponse model = new ModelApiResponse();
/**
* Model tests for ModelApiResponse
*/
@Test
- public void testModelApiResponse() {
+ void testModelApiResponse() {
// TODO: test ModelApiResponse
}
@@ -44,7 +41,7 @@ public class ModelApiResponseTest {
* Test the property 'code'
*/
@Test
- public void codeTest() {
+ void codeTest() {
// TODO: test code
}
@@ -52,7 +49,7 @@ public class ModelApiResponseTest {
* Test the property 'type'
*/
@Test
- public void typeTest() {
+ void typeTest() {
// TODO: test type
}
@@ -60,7 +57,7 @@ public class ModelApiResponseTest {
* Test the property 'message'
*/
@Test
- public void messageTest() {
+ void messageTest() {
// TODO: test message
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ModelFileTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ModelFileTest.java
index 132012d4c38..973730324cc 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ModelFileTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ModelFileTest.java
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelFile
*/
-public class ModelFileTest {
+class ModelFileTest {
private final ModelFile model = new ModelFile();
/**
* Model tests for ModelFile
*/
@Test
- public void testModelFile() {
+ void testModelFile() {
// TODO: test ModelFile
}
@@ -44,7 +41,7 @@ public class ModelFileTest {
* Test the property 'sourceURI'
*/
@Test
- public void sourceURITest() {
+ void sourceURITest() {
// TODO: test sourceURI
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ModelListTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ModelListTest.java
index d3ed2075e9a..bdba8c46a91 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ModelListTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ModelListTest.java
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelList
*/
-public class ModelListTest {
+class ModelListTest {
private final ModelList model = new ModelList();
/**
* Model tests for ModelList
*/
@Test
- public void testModelList() {
+ void testModelList() {
// TODO: test ModelList
}
@@ -44,7 +41,7 @@ public class ModelListTest {
* Test the property '_123list'
*/
@Test
- public void _123listTest() {
+ void _123listTest() {
// TODO: test _123list
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ModelReturnTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ModelReturnTest.java
index f317fef485e..ae4eaf6295f 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ModelReturnTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ModelReturnTest.java
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelReturn
*/
-public class ModelReturnTest {
+class ModelReturnTest {
private final ModelReturn model = new ModelReturn();
/**
* Model tests for ModelReturn
*/
@Test
- public void testModelReturn() {
+ void testModelReturn() {
// TODO: test ModelReturn
}
@@ -44,7 +41,7 @@ public class ModelReturnTest {
* Test the property '_return'
*/
@Test
- public void _returnTest() {
+ void _returnTest() {
// TODO: test _return
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/NameTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/NameTest.java
index 1ed41a0f80c..f35cf4746e5 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/NameTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/NameTest.java
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Name
*/
-public class NameTest {
+class NameTest {
private final Name model = new Name();
/**
* Model tests for Name
*/
@Test
- public void testName() {
+ void testName() {
// TODO: test Name
}
@@ -44,7 +41,7 @@ public class NameTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
@@ -52,7 +49,7 @@ public class NameTest {
* Test the property 'snakeCase'
*/
@Test
- public void snakeCaseTest() {
+ void snakeCaseTest() {
// TODO: test snakeCase
}
@@ -60,7 +57,7 @@ public class NameTest {
* Test the property 'property'
*/
@Test
- public void propertyTest() {
+ void propertyTest() {
// TODO: test property
}
@@ -68,7 +65,7 @@ public class NameTest {
* Test the property '_123number'
*/
@Test
- public void _123numberTest() {
+ void _123numberTest() {
// TODO: test _123number
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/NumberOnlyTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/NumberOnlyTest.java
index 15b74f7ef8b..16ed327afed 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/NumberOnlyTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/NumberOnlyTest.java
@@ -18,26 +18,23 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for NumberOnly
*/
-public class NumberOnlyTest {
+class NumberOnlyTest {
private final NumberOnly model = new NumberOnly();
/**
* Model tests for NumberOnly
*/
@Test
- public void testNumberOnly() {
+ void testNumberOnly() {
// TODO: test NumberOnly
}
@@ -45,7 +42,7 @@ public class NumberOnlyTest {
* Test the property 'justNumber'
*/
@Test
- public void justNumberTest() {
+ void justNumberTest() {
// TODO: test justNumber
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/OrderTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/OrderTest.java
index 8bad0b69dc3..439814c48b1 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/OrderTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/OrderTest.java
@@ -18,26 +18,23 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.time.OffsetDateTime;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Order
*/
-public class OrderTest {
+class OrderTest {
private final Order model = new Order();
/**
* Model tests for Order
*/
@Test
- public void testOrder() {
+ void testOrder() {
// TODO: test Order
}
@@ -45,7 +42,7 @@ public class OrderTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -53,7 +50,7 @@ public class OrderTest {
* Test the property 'petId'
*/
@Test
- public void petIdTest() {
+ void petIdTest() {
// TODO: test petId
}
@@ -61,7 +58,7 @@ public class OrderTest {
* Test the property 'quantity'
*/
@Test
- public void quantityTest() {
+ void quantityTest() {
// TODO: test quantity
}
@@ -69,7 +66,7 @@ public class OrderTest {
* Test the property 'shipDate'
*/
@Test
- public void shipDateTest() {
+ void shipDateTest() {
// TODO: test shipDate
}
@@ -77,7 +74,7 @@ public class OrderTest {
* Test the property 'status'
*/
@Test
- public void statusTest() {
+ void statusTest() {
// TODO: test status
}
@@ -85,7 +82,7 @@ public class OrderTest {
* Test the property 'complete'
*/
@Test
- public void completeTest() {
+ void completeTest() {
// TODO: test complete
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/OuterCompositeTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/OuterCompositeTest.java
index 67ee5996363..cf76f8e58d0 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/OuterCompositeTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/OuterCompositeTest.java
@@ -18,26 +18,23 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for OuterComposite
*/
-public class OuterCompositeTest {
+class OuterCompositeTest {
private final OuterComposite model = new OuterComposite();
/**
* Model tests for OuterComposite
*/
@Test
- public void testOuterComposite() {
+ void testOuterComposite() {
// TODO: test OuterComposite
}
@@ -45,7 +42,7 @@ public class OuterCompositeTest {
* Test the property 'myNumber'
*/
@Test
- public void myNumberTest() {
+ void myNumberTest() {
// TODO: test myNumber
}
@@ -53,7 +50,7 @@ public class OuterCompositeTest {
* Test the property 'myString'
*/
@Test
- public void myStringTest() {
+ void myStringTest() {
// TODO: test myString
}
@@ -61,7 +58,7 @@ public class OuterCompositeTest {
* Test the property 'myBoolean'
*/
@Test
- public void myBooleanTest() {
+ void myBooleanTest() {
// TODO: test myBoolean
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/OuterEnumTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/OuterEnumTest.java
index 220d40e83cb..4110989633b 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/OuterEnumTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/OuterEnumTest.java
@@ -14,20 +14,19 @@
package org.openapitools.client.model;
import com.google.gson.annotations.SerializedName;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for OuterEnum
*/
-public class OuterEnumTest {
+class OuterEnumTest {
/**
* Model tests for OuterEnum
*/
@Test
- public void testOuterEnum() {
+ void testOuterEnum() {
// TODO: test OuterEnum
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/PetTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/PetTest.java
index 8acfe87f62c..82448ec2368 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/PetTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/PetTest.java
@@ -18,31 +18,29 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Set;
import org.openapitools.client.model.Category;
import org.openapitools.client.model.Tag;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Pet
*/
-public class PetTest {
+class PetTest {
private final Pet model = new Pet();
/**
* Model tests for Pet
*/
@Test
- public void testPet() {
+ void testPet() {
// TODO: test Pet
}
@@ -50,7 +48,7 @@ public class PetTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -58,7 +56,7 @@ public class PetTest {
* Test the property 'category'
*/
@Test
- public void categoryTest() {
+ void categoryTest() {
// TODO: test category
}
@@ -66,7 +64,7 @@ public class PetTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
@@ -74,7 +72,7 @@ public class PetTest {
* Test the property 'photoUrls'
*/
@Test
- public void photoUrlsTest() {
+ void photoUrlsTest() {
// TODO: test photoUrls
}
@@ -82,7 +80,7 @@ public class PetTest {
* Test the property 'tags'
*/
@Test
- public void tagsTest() {
+ void tagsTest() {
// TODO: test tags
}
@@ -90,7 +88,7 @@ public class PetTest {
* Test the property 'status'
*/
@Test
- public void statusTest() {
+ void statusTest() {
// TODO: test status
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java
index 2dc9cb2ae2c..72101f74b61 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ReadOnlyFirst
*/
-public class ReadOnlyFirstTest {
+class ReadOnlyFirstTest {
private final ReadOnlyFirst model = new ReadOnlyFirst();
/**
* Model tests for ReadOnlyFirst
*/
@Test
- public void testReadOnlyFirst() {
+ void testReadOnlyFirst() {
// TODO: test ReadOnlyFirst
}
@@ -44,7 +41,7 @@ public class ReadOnlyFirstTest {
* Test the property 'bar'
*/
@Test
- public void barTest() {
+ void barTest() {
// TODO: test bar
}
@@ -52,7 +49,7 @@ public class ReadOnlyFirstTest {
* Test the property 'baz'
*/
@Test
- public void bazTest() {
+ void bazTest() {
// TODO: test baz
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java
index bcf23eb3cbc..dfc2065188d 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for SpecialModelName
*/
-public class SpecialModelNameTest {
+class SpecialModelNameTest {
private final SpecialModelName model = new SpecialModelName();
/**
* Model tests for SpecialModelName
*/
@Test
- public void testSpecialModelName() {
+ void testSpecialModelName() {
// TODO: test SpecialModelName
}
@@ -44,7 +41,7 @@ public class SpecialModelNameTest {
* Test the property '$specialPropertyName'
*/
@Test
- public void $specialPropertyNameTest() {
+ void $specialPropertyNameTest() {
// TODO: test $specialPropertyName
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/TagTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/TagTest.java
index 83f536d2fa3..36eea1ddb7b 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/TagTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/TagTest.java
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Tag
*/
-public class TagTest {
+class TagTest {
private final Tag model = new Tag();
/**
* Model tests for Tag
*/
@Test
- public void testTag() {
+ void testTag() {
// TODO: test Tag
}
@@ -44,7 +41,7 @@ public class TagTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -52,7 +49,7 @@ public class TagTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java
index ca08c6362ce..3f8ac3d4a3f 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java
@@ -18,28 +18,26 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for TypeHolderDefault
*/
-public class TypeHolderDefaultTest {
+class TypeHolderDefaultTest {
private final TypeHolderDefault model = new TypeHolderDefault();
/**
* Model tests for TypeHolderDefault
*/
@Test
- public void testTypeHolderDefault() {
+ void testTypeHolderDefault() {
// TODO: test TypeHolderDefault
}
@@ -47,7 +45,7 @@ public class TypeHolderDefaultTest {
* Test the property 'stringItem'
*/
@Test
- public void stringItemTest() {
+ void stringItemTest() {
// TODO: test stringItem
}
@@ -55,7 +53,7 @@ public class TypeHolderDefaultTest {
* Test the property 'numberItem'
*/
@Test
- public void numberItemTest() {
+ void numberItemTest() {
// TODO: test numberItem
}
@@ -63,7 +61,7 @@ public class TypeHolderDefaultTest {
* Test the property 'integerItem'
*/
@Test
- public void integerItemTest() {
+ void integerItemTest() {
// TODO: test integerItem
}
@@ -71,7 +69,7 @@ public class TypeHolderDefaultTest {
* Test the property 'boolItem'
*/
@Test
- public void boolItemTest() {
+ void boolItemTest() {
// TODO: test boolItem
}
@@ -79,7 +77,7 @@ public class TypeHolderDefaultTest {
* Test the property 'arrayItem'
*/
@Test
- public void arrayItemTest() {
+ void arrayItemTest() {
// TODO: test arrayItem
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java
index 763bccefe43..e0a7a0d614c 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java
@@ -18,28 +18,26 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for TypeHolderExample
*/
-public class TypeHolderExampleTest {
+class TypeHolderExampleTest {
private final TypeHolderExample model = new TypeHolderExample();
/**
* Model tests for TypeHolderExample
*/
@Test
- public void testTypeHolderExample() {
+ void testTypeHolderExample() {
// TODO: test TypeHolderExample
}
@@ -47,7 +45,7 @@ public class TypeHolderExampleTest {
* Test the property 'stringItem'
*/
@Test
- public void stringItemTest() {
+ void stringItemTest() {
// TODO: test stringItem
}
@@ -55,7 +53,7 @@ public class TypeHolderExampleTest {
* Test the property 'numberItem'
*/
@Test
- public void numberItemTest() {
+ void numberItemTest() {
// TODO: test numberItem
}
@@ -63,7 +61,7 @@ public class TypeHolderExampleTest {
* Test the property 'floatItem'
*/
@Test
- public void floatItemTest() {
+ void floatItemTest() {
// TODO: test floatItem
}
@@ -71,7 +69,7 @@ public class TypeHolderExampleTest {
* Test the property 'integerItem'
*/
@Test
- public void integerItemTest() {
+ void integerItemTest() {
// TODO: test integerItem
}
@@ -79,7 +77,7 @@ public class TypeHolderExampleTest {
* Test the property 'boolItem'
*/
@Test
- public void boolItemTest() {
+ void boolItemTest() {
// TODO: test boolItem
}
@@ -87,7 +85,7 @@ public class TypeHolderExampleTest {
* Test the property 'arrayItem'
*/
@Test
- public void arrayItemTest() {
+ void arrayItemTest() {
// TODO: test arrayItem
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/UserTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/UserTest.java
index b3a76f61da5..5163783cfdc 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/UserTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/UserTest.java
@@ -18,25 +18,22 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for User
*/
-public class UserTest {
+class UserTest {
private final User model = new User();
/**
* Model tests for User
*/
@Test
- public void testUser() {
+ void testUser() {
// TODO: test User
}
@@ -44,7 +41,7 @@ public class UserTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -52,7 +49,7 @@ public class UserTest {
* Test the property 'username'
*/
@Test
- public void usernameTest() {
+ void usernameTest() {
// TODO: test username
}
@@ -60,7 +57,7 @@ public class UserTest {
* Test the property 'firstName'
*/
@Test
- public void firstNameTest() {
+ void firstNameTest() {
// TODO: test firstName
}
@@ -68,7 +65,7 @@ public class UserTest {
* Test the property 'lastName'
*/
@Test
- public void lastNameTest() {
+ void lastNameTest() {
// TODO: test lastName
}
@@ -76,7 +73,7 @@ public class UserTest {
* Test the property 'email'
*/
@Test
- public void emailTest() {
+ void emailTest() {
// TODO: test email
}
@@ -84,7 +81,7 @@ public class UserTest {
* Test the property 'password'
*/
@Test
- public void passwordTest() {
+ void passwordTest() {
// TODO: test password
}
@@ -92,7 +89,7 @@ public class UserTest {
* Test the property 'phone'
*/
@Test
- public void phoneTest() {
+ void phoneTest() {
// TODO: test phone
}
@@ -100,7 +97,7 @@ public class UserTest {
* Test the property 'userStatus'
*/
@Test
- public void userStatusTest() {
+ void userStatusTest() {
// TODO: test userStatus
}
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/XmlItemTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/XmlItemTest.java
index f9790cd7c6b..3cfe59d203c 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/XmlItemTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/model/XmlItemTest.java
@@ -18,28 +18,26 @@ import com.google.gson.annotations.JsonAdapter;
import com.google.gson.annotations.SerializedName;
import com.google.gson.stream.JsonReader;
import com.google.gson.stream.JsonWriter;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.io.IOException;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for XmlItem
*/
-public class XmlItemTest {
+class XmlItemTest {
private final XmlItem model = new XmlItem();
/**
* Model tests for XmlItem
*/
@Test
- public void testXmlItem() {
+ void testXmlItem() {
// TODO: test XmlItem
}
@@ -47,7 +45,7 @@ public class XmlItemTest {
* Test the property 'attributeString'
*/
@Test
- public void attributeStringTest() {
+ void attributeStringTest() {
// TODO: test attributeString
}
@@ -55,7 +53,7 @@ public class XmlItemTest {
* Test the property 'attributeNumber'
*/
@Test
- public void attributeNumberTest() {
+ void attributeNumberTest() {
// TODO: test attributeNumber
}
@@ -63,7 +61,7 @@ public class XmlItemTest {
* Test the property 'attributeInteger'
*/
@Test
- public void attributeIntegerTest() {
+ void attributeIntegerTest() {
// TODO: test attributeInteger
}
@@ -71,7 +69,7 @@ public class XmlItemTest {
* Test the property 'attributeBoolean'
*/
@Test
- public void attributeBooleanTest() {
+ void attributeBooleanTest() {
// TODO: test attributeBoolean
}
@@ -79,7 +77,7 @@ public class XmlItemTest {
* Test the property 'wrappedArray'
*/
@Test
- public void wrappedArrayTest() {
+ void wrappedArrayTest() {
// TODO: test wrappedArray
}
@@ -87,7 +85,7 @@ public class XmlItemTest {
* Test the property 'nameString'
*/
@Test
- public void nameStringTest() {
+ void nameStringTest() {
// TODO: test nameString
}
@@ -95,7 +93,7 @@ public class XmlItemTest {
* Test the property 'nameNumber'
*/
@Test
- public void nameNumberTest() {
+ void nameNumberTest() {
// TODO: test nameNumber
}
@@ -103,7 +101,7 @@ public class XmlItemTest {
* Test the property 'nameInteger'
*/
@Test
- public void nameIntegerTest() {
+ void nameIntegerTest() {
// TODO: test nameInteger
}
@@ -111,7 +109,7 @@ public class XmlItemTest {
* Test the property 'nameBoolean'
*/
@Test
- public void nameBooleanTest() {
+ void nameBooleanTest() {
// TODO: test nameBoolean
}
@@ -119,7 +117,7 @@ public class XmlItemTest {
* Test the property 'nameArray'
*/
@Test
- public void nameArrayTest() {
+ void nameArrayTest() {
// TODO: test nameArray
}
@@ -127,7 +125,7 @@ public class XmlItemTest {
* Test the property 'nameWrappedArray'
*/
@Test
- public void nameWrappedArrayTest() {
+ void nameWrappedArrayTest() {
// TODO: test nameWrappedArray
}
@@ -135,7 +133,7 @@ public class XmlItemTest {
* Test the property 'prefixString'
*/
@Test
- public void prefixStringTest() {
+ void prefixStringTest() {
// TODO: test prefixString
}
@@ -143,7 +141,7 @@ public class XmlItemTest {
* Test the property 'prefixNumber'
*/
@Test
- public void prefixNumberTest() {
+ void prefixNumberTest() {
// TODO: test prefixNumber
}
@@ -151,7 +149,7 @@ public class XmlItemTest {
* Test the property 'prefixInteger'
*/
@Test
- public void prefixIntegerTest() {
+ void prefixIntegerTest() {
// TODO: test prefixInteger
}
@@ -159,7 +157,7 @@ public class XmlItemTest {
* Test the property 'prefixBoolean'
*/
@Test
- public void prefixBooleanTest() {
+ void prefixBooleanTest() {
// TODO: test prefixBoolean
}
@@ -167,7 +165,7 @@ public class XmlItemTest {
* Test the property 'prefixArray'
*/
@Test
- public void prefixArrayTest() {
+ void prefixArrayTest() {
// TODO: test prefixArray
}
@@ -175,7 +173,7 @@ public class XmlItemTest {
* Test the property 'prefixWrappedArray'
*/
@Test
- public void prefixWrappedArrayTest() {
+ void prefixWrappedArrayTest() {
// TODO: test prefixWrappedArray
}
@@ -183,7 +181,7 @@ public class XmlItemTest {
* Test the property 'namespaceString'
*/
@Test
- public void namespaceStringTest() {
+ void namespaceStringTest() {
// TODO: test namespaceString
}
@@ -191,7 +189,7 @@ public class XmlItemTest {
* Test the property 'namespaceNumber'
*/
@Test
- public void namespaceNumberTest() {
+ void namespaceNumberTest() {
// TODO: test namespaceNumber
}
@@ -199,7 +197,7 @@ public class XmlItemTest {
* Test the property 'namespaceInteger'
*/
@Test
- public void namespaceIntegerTest() {
+ void namespaceIntegerTest() {
// TODO: test namespaceInteger
}
@@ -207,7 +205,7 @@ public class XmlItemTest {
* Test the property 'namespaceBoolean'
*/
@Test
- public void namespaceBooleanTest() {
+ void namespaceBooleanTest() {
// TODO: test namespaceBoolean
}
@@ -215,7 +213,7 @@ public class XmlItemTest {
* Test the property 'namespaceArray'
*/
@Test
- public void namespaceArrayTest() {
+ void namespaceArrayTest() {
// TODO: test namespaceArray
}
@@ -223,7 +221,7 @@ public class XmlItemTest {
* Test the property 'namespaceWrappedArray'
*/
@Test
- public void namespaceWrappedArrayTest() {
+ void namespaceWrappedArrayTest() {
// TODO: test namespaceWrappedArray
}
@@ -231,7 +229,7 @@ public class XmlItemTest {
* Test the property 'prefixNsString'
*/
@Test
- public void prefixNsStringTest() {
+ void prefixNsStringTest() {
// TODO: test prefixNsString
}
@@ -239,7 +237,7 @@ public class XmlItemTest {
* Test the property 'prefixNsNumber'
*/
@Test
- public void prefixNsNumberTest() {
+ void prefixNsNumberTest() {
// TODO: test prefixNsNumber
}
@@ -247,7 +245,7 @@ public class XmlItemTest {
* Test the property 'prefixNsInteger'
*/
@Test
- public void prefixNsIntegerTest() {
+ void prefixNsIntegerTest() {
// TODO: test prefixNsInteger
}
@@ -255,7 +253,7 @@ public class XmlItemTest {
* Test the property 'prefixNsBoolean'
*/
@Test
- public void prefixNsBooleanTest() {
+ void prefixNsBooleanTest() {
// TODO: test prefixNsBoolean
}
@@ -263,7 +261,7 @@ public class XmlItemTest {
* Test the property 'prefixNsArray'
*/
@Test
- public void prefixNsArrayTest() {
+ void prefixNsArrayTest() {
// TODO: test prefixNsArray
}
@@ -271,7 +269,7 @@ public class XmlItemTest {
* Test the property 'prefixNsWrappedArray'
*/
@Test
- public void prefixNsWrappedArrayTest() {
+ void prefixNsWrappedArrayTest() {
// TODO: test prefixNsWrappedArray
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/build.gradle b/samples/client/petstore/java/vertx-no-nullable/build.gradle
index 28ecdb66358..e486a82fb27 100644
--- a/samples/client/petstore/java/vertx-no-nullable/build.gradle
+++ b/samples/client/petstore/java/vertx-no-nullable/build.gradle
@@ -33,7 +33,7 @@ ext {
jackson_version = "2.17.1"
jackson_databind_version = "2.17.1"
vertx_version = "3.5.2"
- junit_version = "4.13.2"
+ junit_version = "5.10.3"
jakarta_annotation_version = "1.3.5"
}
@@ -47,6 +47,6 @@ dependencies {
implementation "com.fasterxml.jackson.core:jackson-databind:$jackson_databind_version"
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version"
implementation "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version"
- testImplementation "junit:junit:$junit_version"
+ testImplementation "org.junit.jupiter:junit-jupiter-api:$junit_version"
testImplementation "io.vertx:vertx-unit:$vertx_version"
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/pom.xml b/samples/client/petstore/java/vertx-no-nullable/pom.xml
index 80bfe79d263..718027ec3d5 100644
--- a/samples/client/petstore/java/vertx-no-nullable/pom.xml
+++ b/samples/client/petstore/java/vertx-no-nullable/pom.xml
@@ -249,8 +249,8 @@
- junit
- junit
+ org.junit.jupiter
+ junit-jupiter-api
${junit-version}
test
@@ -269,6 +269,6 @@
2.17.1
0.2.6
1.3.5
- 4.13.2
+ 5.10.3
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java
index 35dca85fdf2..7e981066706 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java
@@ -13,14 +13,14 @@
package org.openapitools.client.api;
import org.openapitools.client.model.Client;
+import java.util.UUID;
import org.openapitools.client.Configuration;
-import org.junit.Test;
-import org.junit.Ignore;
-import org.junit.BeforeClass;
-import org.junit.Rule;
-import org.junit.runner.RunWith;
+import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
@@ -31,6 +31,8 @@ import io.vertx.ext.unit.junit.RunTestOnContext;
import io.vertx.ext.unit.TestContext;
import io.vertx.ext.unit.Async;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
@@ -39,24 +41,16 @@ import java.util.Map;
/**
* API tests for AnotherFakeApi
*/
-@RunWith(VertxUnitRunner.class)
-@Ignore
+@Disabled
public class AnotherFakeApiTest {
private AnotherFakeApi api;
- @Rule
- public RunTestOnContext rule = new RunTestOnContext();
-
- @BeforeClass
+ @BeforeAll
public void setupApiClient() {
- JsonObject config = new JsonObject();
- Vertx vertx = rule.vertx();
- Configuration.setupDefaultApiClient(vertx, config);
-
api = new AnotherFakeApiImpl();
}
-
+
/**
* To test special tags
* To test special tags and operation ID starting with number
@@ -66,11 +60,11 @@ public class AnotherFakeApiTest {
@Test
public void call123testSpecialTagsTest(TestContext testContext) {
Async async = testContext.async();
+ UUID uuidTest = null;
Client body = null;
- api.call123testSpecialTags(body, result -> {
+ api.call123testSpecialTags(uuidTest, body, result -> {
// TODO: test validations
async.complete();
});
}
-
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/FakeApiTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/FakeApiTest.java
index b907b722c29..10ad680e364 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/FakeApiTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/FakeApiTest.java
@@ -24,11 +24,10 @@ import org.openapitools.client.model.XmlItem;
import org.openapitools.client.Configuration;
-import org.junit.Test;
-import org.junit.Ignore;
-import org.junit.BeforeClass;
-import org.junit.Rule;
-import org.junit.runner.RunWith;
+import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
@@ -39,6 +38,8 @@ import io.vertx.ext.unit.junit.RunTestOnContext;
import io.vertx.ext.unit.TestContext;
import io.vertx.ext.unit.Async;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
@@ -47,24 +48,16 @@ import java.util.Map;
/**
* API tests for FakeApi
*/
-@RunWith(VertxUnitRunner.class)
-@Ignore
+@Disabled
public class FakeApiTest {
private FakeApi api;
- @Rule
- public RunTestOnContext rule = new RunTestOnContext();
-
- @BeforeClass
+ @BeforeAll
public void setupApiClient() {
- JsonObject config = new JsonObject();
- Vertx vertx = rule.vertx();
- Configuration.setupDefaultApiClient(vertx, config);
-
api = new FakeApiImpl();
}
-
+
/**
* creates an XmlItem
* this route creates an XmlItem
@@ -80,7 +73,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
*
* Test serialization of outer boolean types
@@ -96,7 +88,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
*
* Test serialization of object with outer number type
@@ -112,7 +103,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
*
* Test serialization of outer number types
@@ -128,7 +118,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
*
* Test serialization of outer string types
@@ -144,7 +133,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
*
* For this test, the body for this request much reference a schema named `File`.
@@ -160,7 +148,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
*
*
@@ -177,7 +164,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
* To test \"client\" model
* To test \"client\" model
@@ -193,7 +179,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
* Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
* Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
@@ -222,7 +207,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
* To test enum parameters
* To test enum parameters
@@ -245,7 +229,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
* Fake endpoint to test group parameters (optional)
* Fake endpoint to test group parameters (optional)
@@ -266,7 +249,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
* test inline additionalProperties
*
@@ -282,7 +264,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
* test json serialization of form data
*
@@ -299,7 +280,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
*
* To test the collection format in query parameters
@@ -319,5 +299,4 @@ public class FakeApiTest {
async.complete();
});
}
-
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java
index 470100109e6..64d937df0c4 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java
@@ -16,11 +16,10 @@ import org.openapitools.client.model.Client;
import org.openapitools.client.Configuration;
-import org.junit.Test;
-import org.junit.Ignore;
-import org.junit.BeforeClass;
-import org.junit.Rule;
-import org.junit.runner.RunWith;
+import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
@@ -31,6 +30,8 @@ import io.vertx.ext.unit.junit.RunTestOnContext;
import io.vertx.ext.unit.TestContext;
import io.vertx.ext.unit.Async;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
@@ -39,24 +40,16 @@ import java.util.Map;
/**
* API tests for FakeClassnameTags123Api
*/
-@RunWith(VertxUnitRunner.class)
-@Ignore
+@Disabled
public class FakeClassnameTags123ApiTest {
private FakeClassnameTags123Api api;
- @Rule
- public RunTestOnContext rule = new RunTestOnContext();
-
- @BeforeClass
+ @BeforeAll
public void setupApiClient() {
- JsonObject config = new JsonObject();
- Vertx vertx = rule.vertx();
- Configuration.setupDefaultApiClient(vertx, config);
-
api = new FakeClassnameTags123ApiImpl();
}
-
+
/**
* To test class name in snake case
* To test class name in snake case
@@ -72,5 +65,4 @@ public class FakeClassnameTags123ApiTest {
async.complete();
});
}
-
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/PetApiTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/PetApiTest.java
index a180bf86964..ac1d4ba352c 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/PetApiTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/PetApiTest.java
@@ -19,11 +19,10 @@ import java.util.Set;
import org.openapitools.client.Configuration;
-import org.junit.Test;
-import org.junit.Ignore;
-import org.junit.BeforeClass;
-import org.junit.Rule;
-import org.junit.runner.RunWith;
+import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
@@ -34,6 +33,8 @@ import io.vertx.ext.unit.junit.RunTestOnContext;
import io.vertx.ext.unit.TestContext;
import io.vertx.ext.unit.Async;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
@@ -42,24 +43,16 @@ import java.util.Map;
/**
* API tests for PetApi
*/
-@RunWith(VertxUnitRunner.class)
-@Ignore
+@Disabled
public class PetApiTest {
private PetApi api;
- @Rule
- public RunTestOnContext rule = new RunTestOnContext();
-
- @BeforeClass
+ @BeforeAll
public void setupApiClient() {
- JsonObject config = new JsonObject();
- Vertx vertx = rule.vertx();
- Configuration.setupDefaultApiClient(vertx, config);
-
api = new PetApiImpl();
}
-
+
/**
* Add a new pet to the store
*
@@ -75,7 +68,6 @@ public class PetApiTest {
async.complete();
});
}
-
/**
* Deletes a pet
*
@@ -92,7 +84,6 @@ public class PetApiTest {
async.complete();
});
}
-
/**
* Finds Pets by status
* Multiple status values can be provided with comma separated strings
@@ -108,7 +99,6 @@ public class PetApiTest {
async.complete();
});
}
-
/**
* Finds Pets by tags
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
@@ -124,7 +114,6 @@ public class PetApiTest {
async.complete();
});
}
-
/**
* Find pet by ID
* Returns a single pet
@@ -140,7 +129,6 @@ public class PetApiTest {
async.complete();
});
}
-
/**
* Update an existing pet
*
@@ -156,7 +144,6 @@ public class PetApiTest {
async.complete();
});
}
-
/**
* Updates a pet in the store with form data
*
@@ -174,7 +161,6 @@ public class PetApiTest {
async.complete();
});
}
-
/**
* uploads an image
*
@@ -186,13 +172,12 @@ public class PetApiTest {
Async async = testContext.async();
Long petId = null;
String additionalMetadata = null;
- AsyncFile file = null;
- api.uploadFile(petId, additionalMetadata, file, result -> {
+ AsyncFile _file = null;
+ api.uploadFile(petId, additionalMetadata, _file, result -> {
// TODO: test validations
async.complete();
});
}
-
/**
* uploads an image (required)
*
@@ -210,5 +195,4 @@ public class PetApiTest {
async.complete();
});
}
-
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/StoreApiTest.java
index 5581be91dc8..c33d57cc669 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -16,11 +16,10 @@ import org.openapitools.client.model.Order;
import org.openapitools.client.Configuration;
-import org.junit.Test;
-import org.junit.Ignore;
-import org.junit.BeforeClass;
-import org.junit.Rule;
-import org.junit.runner.RunWith;
+import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
@@ -31,6 +30,8 @@ import io.vertx.ext.unit.junit.RunTestOnContext;
import io.vertx.ext.unit.TestContext;
import io.vertx.ext.unit.Async;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
@@ -39,24 +40,16 @@ import java.util.Map;
/**
* API tests for StoreApi
*/
-@RunWith(VertxUnitRunner.class)
-@Ignore
+@Disabled
public class StoreApiTest {
private StoreApi api;
- @Rule
- public RunTestOnContext rule = new RunTestOnContext();
-
- @BeforeClass
+ @BeforeAll
public void setupApiClient() {
- JsonObject config = new JsonObject();
- Vertx vertx = rule.vertx();
- Configuration.setupDefaultApiClient(vertx, config);
-
api = new StoreApiImpl();
}
-
+
/**
* Delete purchase order by ID
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
@@ -72,7 +65,6 @@ public class StoreApiTest {
async.complete();
});
}
-
/**
* Returns pet inventories by status
* Returns a map of status codes to quantities
@@ -87,7 +79,6 @@ public class StoreApiTest {
async.complete();
});
}
-
/**
* Find purchase order by ID
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
@@ -103,7 +94,6 @@ public class StoreApiTest {
async.complete();
});
}
-
/**
* Place an order for a pet
*
@@ -119,5 +109,4 @@ public class StoreApiTest {
async.complete();
});
}
-
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/UserApiTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/UserApiTest.java
index b5724cd0926..446a53ee192 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/UserApiTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/UserApiTest.java
@@ -12,15 +12,15 @@
package org.openapitools.client.api;
+import java.time.OffsetDateTime;
import org.openapitools.client.model.User;
import org.openapitools.client.Configuration;
-import org.junit.Test;
-import org.junit.Ignore;
-import org.junit.BeforeClass;
-import org.junit.Rule;
-import org.junit.runner.RunWith;
+import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
@@ -31,6 +31,8 @@ import io.vertx.ext.unit.junit.RunTestOnContext;
import io.vertx.ext.unit.TestContext;
import io.vertx.ext.unit.Async;
+import java.time.LocalDate;
+import java.time.OffsetDateTime;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
@@ -39,24 +41,16 @@ import java.util.Map;
/**
* API tests for UserApi
*/
-@RunWith(VertxUnitRunner.class)
-@Ignore
+@Disabled
public class UserApiTest {
private UserApi api;
- @Rule
- public RunTestOnContext rule = new RunTestOnContext();
-
- @BeforeClass
+ @BeforeAll
public void setupApiClient() {
- JsonObject config = new JsonObject();
- Vertx vertx = rule.vertx();
- Configuration.setupDefaultApiClient(vertx, config);
-
api = new UserApiImpl();
}
-
+
/**
* Create user
* This can only be done by the logged in user.
@@ -72,7 +66,6 @@ public class UserApiTest {
async.complete();
});
}
-
/**
* Creates list of users with given input array
*
@@ -88,7 +81,6 @@ public class UserApiTest {
async.complete();
});
}
-
/**
* Creates list of users with given input array
*
@@ -104,7 +96,6 @@ public class UserApiTest {
async.complete();
});
}
-
/**
* Delete user
* This can only be done by the logged in user.
@@ -120,7 +111,6 @@ public class UserApiTest {
async.complete();
});
}
-
/**
* Get user by user name
*
@@ -136,7 +126,6 @@ public class UserApiTest {
async.complete();
});
}
-
/**
* Logs user into the system
*
@@ -153,7 +142,6 @@ public class UserApiTest {
async.complete();
});
}
-
/**
* Logs out current logged in user session
*
@@ -168,7 +156,6 @@ public class UserApiTest {
async.complete();
});
}
-
/**
* Updated user
* This can only be done by the logged in user.
@@ -185,5 +172,4 @@ public class UserApiTest {
async.complete();
});
}
-
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java
index 0ef36c6a64c..faacb289c17 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesAnyTypeTest.java
@@ -18,26 +18,23 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesAnyType
*/
-public class AdditionalPropertiesAnyTypeTest {
+class AdditionalPropertiesAnyTypeTest {
private final AdditionalPropertiesAnyType model = new AdditionalPropertiesAnyType();
/**
* Model tests for AdditionalPropertiesAnyType
*/
@Test
- public void testAdditionalPropertiesAnyType() {
+ void testAdditionalPropertiesAnyType() {
// TODO: test AdditionalPropertiesAnyType
}
@@ -45,7 +42,7 @@ public class AdditionalPropertiesAnyTypeTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java
index 49ebece62c2..b506ff7ae92 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesArrayTest.java
@@ -18,27 +18,24 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesArray
*/
-public class AdditionalPropertiesArrayTest {
+class AdditionalPropertiesArrayTest {
private final AdditionalPropertiesArray model = new AdditionalPropertiesArray();
/**
* Model tests for AdditionalPropertiesArray
*/
@Test
- public void testAdditionalPropertiesArray() {
+ void testAdditionalPropertiesArray() {
// TODO: test AdditionalPropertiesArray
}
@@ -46,7 +43,7 @@ public class AdditionalPropertiesArrayTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java
index 1113d5dd466..ba65ffedc14 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesBooleanTest.java
@@ -18,26 +18,23 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesBoolean
*/
-public class AdditionalPropertiesBooleanTest {
+class AdditionalPropertiesBooleanTest {
private final AdditionalPropertiesBoolean model = new AdditionalPropertiesBoolean();
/**
* Model tests for AdditionalPropertiesBoolean
*/
@Test
- public void testAdditionalPropertiesBoolean() {
+ void testAdditionalPropertiesBoolean() {
// TODO: test AdditionalPropertiesBoolean
}
@@ -45,7 +42,7 @@ public class AdditionalPropertiesBooleanTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java
index 0217e6cd5dc..72854079e5e 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java
@@ -18,28 +18,25 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesClass
*/
-public class AdditionalPropertiesClassTest {
+class AdditionalPropertiesClassTest {
private final AdditionalPropertiesClass model = new AdditionalPropertiesClass();
/**
* Model tests for AdditionalPropertiesClass
*/
@Test
- public void testAdditionalPropertiesClass() {
+ void testAdditionalPropertiesClass() {
// TODO: test AdditionalPropertiesClass
}
@@ -47,7 +44,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapString'
*/
@Test
- public void mapStringTest() {
+ void mapStringTest() {
// TODO: test mapString
}
@@ -55,7 +52,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapNumber'
*/
@Test
- public void mapNumberTest() {
+ void mapNumberTest() {
// TODO: test mapNumber
}
@@ -63,7 +60,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapInteger'
*/
@Test
- public void mapIntegerTest() {
+ void mapIntegerTest() {
// TODO: test mapInteger
}
@@ -71,7 +68,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapBoolean'
*/
@Test
- public void mapBooleanTest() {
+ void mapBooleanTest() {
// TODO: test mapBoolean
}
@@ -79,7 +76,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapArrayInteger'
*/
@Test
- public void mapArrayIntegerTest() {
+ void mapArrayIntegerTest() {
// TODO: test mapArrayInteger
}
@@ -87,7 +84,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapArrayAnytype'
*/
@Test
- public void mapArrayAnytypeTest() {
+ void mapArrayAnytypeTest() {
// TODO: test mapArrayAnytype
}
@@ -95,7 +92,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapMapString'
*/
@Test
- public void mapMapStringTest() {
+ void mapMapStringTest() {
// TODO: test mapMapString
}
@@ -103,7 +100,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapMapAnytype'
*/
@Test
- public void mapMapAnytypeTest() {
+ void mapMapAnytypeTest() {
// TODO: test mapMapAnytype
}
@@ -111,7 +108,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'anytype1'
*/
@Test
- public void anytype1Test() {
+ void anytype1Test() {
// TODO: test anytype1
}
@@ -119,7 +116,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'anytype2'
*/
@Test
- public void anytype2Test() {
+ void anytype2Test() {
// TODO: test anytype2
}
@@ -127,7 +124,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'anytype3'
*/
@Test
- public void anytype3Test() {
+ void anytype3Test() {
// TODO: test anytype3
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java
index 815f5742786..916c2c2bcb3 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesIntegerTest.java
@@ -18,26 +18,23 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesInteger
*/
-public class AdditionalPropertiesIntegerTest {
+class AdditionalPropertiesIntegerTest {
private final AdditionalPropertiesInteger model = new AdditionalPropertiesInteger();
/**
* Model tests for AdditionalPropertiesInteger
*/
@Test
- public void testAdditionalPropertiesInteger() {
+ void testAdditionalPropertiesInteger() {
// TODO: test AdditionalPropertiesInteger
}
@@ -45,7 +42,7 @@ public class AdditionalPropertiesIntegerTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java
index 20d1c6199d2..a099245eec5 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesNumberTest.java
@@ -18,27 +18,24 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesNumber
*/
-public class AdditionalPropertiesNumberTest {
+class AdditionalPropertiesNumberTest {
private final AdditionalPropertiesNumber model = new AdditionalPropertiesNumber();
/**
* Model tests for AdditionalPropertiesNumber
*/
@Test
- public void testAdditionalPropertiesNumber() {
+ void testAdditionalPropertiesNumber() {
// TODO: test AdditionalPropertiesNumber
}
@@ -46,7 +43,7 @@ public class AdditionalPropertiesNumberTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java
index 3a863bdf2db..d47c9a37d1f 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesObjectTest.java
@@ -18,26 +18,23 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesObject
*/
-public class AdditionalPropertiesObjectTest {
+class AdditionalPropertiesObjectTest {
private final AdditionalPropertiesObject model = new AdditionalPropertiesObject();
/**
* Model tests for AdditionalPropertiesObject
*/
@Test
- public void testAdditionalPropertiesObject() {
+ void testAdditionalPropertiesObject() {
// TODO: test AdditionalPropertiesObject
}
@@ -45,7 +42,7 @@ public class AdditionalPropertiesObjectTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java
index 8ab8d9c52a9..3820dd2e23c 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AdditionalPropertiesStringTest.java
@@ -18,26 +18,23 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesString
*/
-public class AdditionalPropertiesStringTest {
+class AdditionalPropertiesStringTest {
private final AdditionalPropertiesString model = new AdditionalPropertiesString();
/**
* Model tests for AdditionalPropertiesString
*/
@Test
- public void testAdditionalPropertiesString() {
+ void testAdditionalPropertiesString() {
// TODO: test AdditionalPropertiesString
}
@@ -45,7 +42,7 @@ public class AdditionalPropertiesStringTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AnimalTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AnimalTest.java
index 3475d2be312..24776d3cb51 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AnimalTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/AnimalTest.java
@@ -13,6 +13,7 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
@@ -20,27 +21,21 @@ import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.openapitools.client.model.BigCat;
-import org.openapitools.client.model.Cat;
-import org.openapitools.client.model.Dog;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Animal
*/
-public class AnimalTest {
+class AnimalTest {
private final Animal model = new Animal();
/**
* Model tests for Animal
*/
@Test
- public void testAnimal() {
+ void testAnimal() {
// TODO: test Animal
}
@@ -48,7 +43,7 @@ public class AnimalTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -56,7 +51,7 @@ public class AnimalTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java
index 928e2973997..6bbe877044d 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java
@@ -18,27 +18,25 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayOfArrayOfNumberOnly
*/
-public class ArrayOfArrayOfNumberOnlyTest {
+class ArrayOfArrayOfNumberOnlyTest {
private final ArrayOfArrayOfNumberOnly model = new ArrayOfArrayOfNumberOnly();
/**
* Model tests for ArrayOfArrayOfNumberOnly
*/
@Test
- public void testArrayOfArrayOfNumberOnly() {
+ void testArrayOfArrayOfNumberOnly() {
// TODO: test ArrayOfArrayOfNumberOnly
}
@@ -46,7 +44,7 @@ public class ArrayOfArrayOfNumberOnlyTest {
* Test the property 'arrayArrayNumber'
*/
@Test
- public void arrayArrayNumberTest() {
+ void arrayArrayNumberTest() {
// TODO: test arrayArrayNumber
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java
index 0c02796dc79..eaf908bb1ab 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java
@@ -18,27 +18,25 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayOfNumberOnly
*/
-public class ArrayOfNumberOnlyTest {
+class ArrayOfNumberOnlyTest {
private final ArrayOfNumberOnly model = new ArrayOfNumberOnly();
/**
* Model tests for ArrayOfNumberOnly
*/
@Test
- public void testArrayOfNumberOnly() {
+ void testArrayOfNumberOnly() {
// TODO: test ArrayOfNumberOnly
}
@@ -46,7 +44,7 @@ public class ArrayOfNumberOnlyTest {
* Test the property 'arrayNumber'
*/
@Test
- public void arrayNumberTest() {
+ void arrayNumberTest() {
// TODO: test arrayNumber
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ArrayTestTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ArrayTestTest.java
index bc5ac744672..99c6bcf5360 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ArrayTestTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ArrayTestTest.java
@@ -18,27 +18,25 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
import org.openapitools.client.model.ReadOnlyFirst;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayTest
*/
-public class ArrayTestTest {
+class ArrayTestTest {
private final ArrayTest model = new ArrayTest();
/**
* Model tests for ArrayTest
*/
@Test
- public void testArrayTest() {
+ void testArrayTest() {
// TODO: test ArrayTest
}
@@ -46,7 +44,7 @@ public class ArrayTestTest {
* Test the property 'arrayOfString'
*/
@Test
- public void arrayOfStringTest() {
+ void arrayOfStringTest() {
// TODO: test arrayOfString
}
@@ -54,7 +52,7 @@ public class ArrayTestTest {
* Test the property 'arrayArrayOfInteger'
*/
@Test
- public void arrayArrayOfIntegerTest() {
+ void arrayArrayOfIntegerTest() {
// TODO: test arrayArrayOfInteger
}
@@ -62,7 +60,7 @@ public class ArrayTestTest {
* Test the property 'arrayArrayOfModel'
*/
@Test
- public void arrayArrayOfModelTest() {
+ void arrayArrayOfModelTest() {
// TODO: test arrayArrayOfModel
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/BigCatTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/BigCatTest.java
index 765bd150512..20bc4e0d424 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/BigCatTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/BigCatTest.java
@@ -22,21 +22,21 @@ import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import org.openapitools.client.model.Cat;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for BigCat
*/
-public class BigCatTest {
+class BigCatTest {
private final BigCat model = new BigCat();
/**
* Model tests for BigCat
*/
@Test
- public void testBigCat() {
+ void testBigCat() {
// TODO: test BigCat
}
@@ -44,7 +44,7 @@ public class BigCatTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -52,7 +52,7 @@ public class BigCatTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
@@ -60,7 +60,7 @@ public class BigCatTest {
* Test the property 'declawed'
*/
@Test
- public void declawedTest() {
+ void declawedTest() {
// TODO: test declawed
}
@@ -68,7 +68,7 @@ public class BigCatTest {
* Test the property 'kind'
*/
@Test
- public void kindTest() {
+ void kindTest() {
// TODO: test kind
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/CapitalizationTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/CapitalizationTest.java
index ffa72405fa8..a0217acd1f2 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/CapitalizationTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/CapitalizationTest.java
@@ -18,24 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Capitalization
*/
-public class CapitalizationTest {
+class CapitalizationTest {
private final Capitalization model = new Capitalization();
/**
* Model tests for Capitalization
*/
@Test
- public void testCapitalization() {
+ void testCapitalization() {
// TODO: test Capitalization
}
@@ -43,7 +40,7 @@ public class CapitalizationTest {
* Test the property 'smallCamel'
*/
@Test
- public void smallCamelTest() {
+ void smallCamelTest() {
// TODO: test smallCamel
}
@@ -51,7 +48,7 @@ public class CapitalizationTest {
* Test the property 'capitalCamel'
*/
@Test
- public void capitalCamelTest() {
+ void capitalCamelTest() {
// TODO: test capitalCamel
}
@@ -59,7 +56,7 @@ public class CapitalizationTest {
* Test the property 'smallSnake'
*/
@Test
- public void smallSnakeTest() {
+ void smallSnakeTest() {
// TODO: test smallSnake
}
@@ -67,7 +64,7 @@ public class CapitalizationTest {
* Test the property 'capitalSnake'
*/
@Test
- public void capitalSnakeTest() {
+ void capitalSnakeTest() {
// TODO: test capitalSnake
}
@@ -75,7 +72,7 @@ public class CapitalizationTest {
* Test the property 'scAETHFlowPoints'
*/
@Test
- public void scAETHFlowPointsTest() {
+ void scAETHFlowPointsTest() {
// TODO: test scAETHFlowPoints
}
@@ -83,7 +80,7 @@ public class CapitalizationTest {
* Test the property 'ATT_NAME'
*/
@Test
- public void ATT_NAMETest() {
+ void ATT_NAMETest() {
// TODO: test ATT_NAME
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/CatTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/CatTest.java
index 02f70ea913e..1b389a075be 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/CatTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/CatTest.java
@@ -13,6 +13,7 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
@@ -20,27 +21,22 @@ import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import org.openapitools.client.model.Animal;
-import org.openapitools.client.model.BigCat;
-import org.openapitools.client.model.CatAllOf;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Cat
*/
-public class CatTest {
+class CatTest {
private final Cat model = new Cat();
/**
* Model tests for Cat
*/
@Test
- public void testCat() {
+ void testCat() {
// TODO: test Cat
}
@@ -48,7 +44,7 @@ public class CatTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -56,7 +52,7 @@ public class CatTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
@@ -64,7 +60,7 @@ public class CatTest {
* Test the property 'declawed'
*/
@Test
- public void declawedTest() {
+ void declawedTest() {
// TODO: test declawed
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/CategoryTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/CategoryTest.java
index 7f149cec854..22fcbd7f3cc 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/CategoryTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/CategoryTest.java
@@ -18,24 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Category
*/
-public class CategoryTest {
+class CategoryTest {
private final Category model = new Category();
/**
* Model tests for Category
*/
@Test
- public void testCategory() {
+ void testCategory() {
// TODO: test Category
}
@@ -43,7 +40,7 @@ public class CategoryTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -51,7 +48,7 @@ public class CategoryTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ClassModelTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ClassModelTest.java
index afac01e835c..6ef5c744fbc 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ClassModelTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ClassModelTest.java
@@ -18,24 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ClassModel
*/
-public class ClassModelTest {
+class ClassModelTest {
private final ClassModel model = new ClassModel();
/**
* Model tests for ClassModel
*/
@Test
- public void testClassModel() {
+ void testClassModel() {
// TODO: test ClassModel
}
@@ -43,7 +40,7 @@ public class ClassModelTest {
* Test the property 'propertyClass'
*/
@Test
- public void propertyClassTest() {
+ void propertyClassTest() {
// TODO: test propertyClass
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ClientTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ClientTest.java
index cf90750a911..8028f11bc2b 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ClientTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ClientTest.java
@@ -18,24 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Client
*/
-public class ClientTest {
+class ClientTest {
private final Client model = new Client();
/**
* Model tests for Client
*/
@Test
- public void testClient() {
+ void testClient() {
// TODO: test Client
}
@@ -43,7 +40,7 @@ public class ClientTest {
* Test the property 'client'
*/
@Test
- public void clientTest() {
+ void clientTest() {
// TODO: test client
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/DogTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/DogTest.java
index 2903f6657e0..b2a12ab4c5e 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/DogTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/DogTest.java
@@ -13,6 +13,7 @@
package org.openapitools.client.model;
+import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
@@ -20,26 +21,22 @@ import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import org.openapitools.client.model.Animal;
-import org.openapitools.client.model.DogAllOf;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Dog
*/
-public class DogTest {
+class DogTest {
private final Dog model = new Dog();
/**
* Model tests for Dog
*/
@Test
- public void testDog() {
+ void testDog() {
// TODO: test Dog
}
@@ -47,7 +44,7 @@ public class DogTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -55,7 +52,7 @@ public class DogTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
@@ -63,7 +60,7 @@ public class DogTest {
* Test the property 'breed'
*/
@Test
- public void breedTest() {
+ void breedTest() {
// TODO: test breed
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/EnumArraysTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/EnumArraysTest.java
index 3130e2a5a05..4a755b0d442 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/EnumArraysTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/EnumArraysTest.java
@@ -18,26 +18,24 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for EnumArrays
*/
-public class EnumArraysTest {
+class EnumArraysTest {
private final EnumArrays model = new EnumArrays();
/**
* Model tests for EnumArrays
*/
@Test
- public void testEnumArrays() {
+ void testEnumArrays() {
// TODO: test EnumArrays
}
@@ -45,7 +43,7 @@ public class EnumArraysTest {
* Test the property 'justSymbol'
*/
@Test
- public void justSymbolTest() {
+ void justSymbolTest() {
// TODO: test justSymbol
}
@@ -53,7 +51,7 @@ public class EnumArraysTest {
* Test the property 'arrayEnum'
*/
@Test
- public void arrayEnumTest() {
+ void arrayEnumTest() {
// TODO: test arrayEnum
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/EnumClassTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/EnumClassTest.java
index 9e45543facd..48aa1a737fc 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/EnumClassTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/EnumClassTest.java
@@ -13,20 +13,19 @@
package org.openapitools.client.model;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for EnumClass
*/
-public class EnumClassTest {
+class EnumClassTest {
/**
* Model tests for EnumClass
*/
@Test
- public void testEnumClass() {
+ void testEnumClass() {
// TODO: test EnumClass
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/EnumTestTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/EnumTestTest.java
index eb783880536..b06e3eb195d 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/EnumTestTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/EnumTestTest.java
@@ -18,25 +18,22 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import org.openapitools.client.model.OuterEnum;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for EnumTest
*/
-public class EnumTestTest {
+class EnumTestTest {
private final EnumTest model = new EnumTest();
/**
* Model tests for EnumTest
*/
@Test
- public void testEnumTest() {
+ void testEnumTest() {
// TODO: test EnumTest
}
@@ -44,7 +41,7 @@ public class EnumTestTest {
* Test the property 'enumString'
*/
@Test
- public void enumStringTest() {
+ void enumStringTest() {
// TODO: test enumString
}
@@ -52,7 +49,7 @@ public class EnumTestTest {
* Test the property 'enumStringRequired'
*/
@Test
- public void enumStringRequiredTest() {
+ void enumStringRequiredTest() {
// TODO: test enumStringRequired
}
@@ -60,7 +57,7 @@ public class EnumTestTest {
* Test the property 'enumInteger'
*/
@Test
- public void enumIntegerTest() {
+ void enumIntegerTest() {
// TODO: test enumInteger
}
@@ -68,7 +65,7 @@ public class EnumTestTest {
* Test the property 'enumNumber'
*/
@Test
- public void enumNumberTest() {
+ void enumNumberTest() {
// TODO: test enumNumber
}
@@ -76,7 +73,7 @@ public class EnumTestTest {
* Test the property 'outerEnum'
*/
@Test
- public void outerEnumTest() {
+ void outerEnumTest() {
// TODO: test outerEnum
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java
index c3c78aa3aa5..0048cb2c749 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java
@@ -18,42 +18,41 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.openapitools.client.model.ModelFile;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for FileSchemaTestClass
*/
-public class FileSchemaTestClassTest {
+class FileSchemaTestClassTest {
private final FileSchemaTestClass model = new FileSchemaTestClass();
/**
* Model tests for FileSchemaTestClass
*/
@Test
- public void testFileSchemaTestClass() {
+ void testFileSchemaTestClass() {
// TODO: test FileSchemaTestClass
}
/**
- * Test the property 'file'
+ * Test the property '_file'
*/
@Test
- public void fileTest() {
- // TODO: test file
+ void _fileTest() {
+ // TODO: test _file
}
/**
* Test the property 'files'
*/
@Test
- public void filesTest() {
+ void filesTest() {
// TODO: test files
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/FormatTestTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/FormatTestTest.java
index 0e626ca0f44..acd1cec8712 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/FormatTestTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/FormatTestTest.java
@@ -18,29 +18,26 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import io.vertx.core.file.AsyncFile;
import java.math.BigDecimal;
-import java.util.UUID;
import java.time.LocalDate;
import java.time.OffsetDateTime;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import java.util.UUID;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for FormatTest
*/
-public class FormatTestTest {
+class FormatTestTest {
private final FormatTest model = new FormatTest();
/**
* Model tests for FormatTest
*/
@Test
- public void testFormatTest() {
+ void testFormatTest() {
// TODO: test FormatTest
}
@@ -48,7 +45,7 @@ public class FormatTestTest {
* Test the property 'integer'
*/
@Test
- public void integerTest() {
+ void integerTest() {
// TODO: test integer
}
@@ -56,7 +53,7 @@ public class FormatTestTest {
* Test the property 'int32'
*/
@Test
- public void int32Test() {
+ void int32Test() {
// TODO: test int32
}
@@ -64,7 +61,7 @@ public class FormatTestTest {
* Test the property 'int64'
*/
@Test
- public void int64Test() {
+ void int64Test() {
// TODO: test int64
}
@@ -72,7 +69,7 @@ public class FormatTestTest {
* Test the property 'number'
*/
@Test
- public void numberTest() {
+ void numberTest() {
// TODO: test number
}
@@ -80,7 +77,7 @@ public class FormatTestTest {
* Test the property '_float'
*/
@Test
- public void _floatTest() {
+ void _floatTest() {
// TODO: test _float
}
@@ -88,7 +85,7 @@ public class FormatTestTest {
* Test the property '_double'
*/
@Test
- public void _doubleTest() {
+ void _doubleTest() {
// TODO: test _double
}
@@ -96,7 +93,7 @@ public class FormatTestTest {
* Test the property 'string'
*/
@Test
- public void stringTest() {
+ void stringTest() {
// TODO: test string
}
@@ -104,7 +101,7 @@ public class FormatTestTest {
* Test the property '_byte'
*/
@Test
- public void _byteTest() {
+ void _byteTest() {
// TODO: test _byte
}
@@ -112,7 +109,7 @@ public class FormatTestTest {
* Test the property 'binary'
*/
@Test
- public void binaryTest() {
+ void binaryTest() {
// TODO: test binary
}
@@ -120,7 +117,7 @@ public class FormatTestTest {
* Test the property 'date'
*/
@Test
- public void dateTest() {
+ void dateTest() {
// TODO: test date
}
@@ -128,7 +125,7 @@ public class FormatTestTest {
* Test the property 'dateTime'
*/
@Test
- public void dateTimeTest() {
+ void dateTimeTest() {
// TODO: test dateTime
}
@@ -136,7 +133,7 @@ public class FormatTestTest {
* Test the property 'uuid'
*/
@Test
- public void uuidTest() {
+ void uuidTest() {
// TODO: test uuid
}
@@ -144,7 +141,7 @@ public class FormatTestTest {
* Test the property 'password'
*/
@Test
- public void passwordTest() {
+ void passwordTest() {
// TODO: test password
}
@@ -152,7 +149,7 @@ public class FormatTestTest {
* Test the property 'bigDecimal'
*/
@Test
- public void bigDecimalTest() {
+ void bigDecimalTest() {
// TODO: test bigDecimal
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java
index e28f7d7441b..908f0aff6ed 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java
@@ -18,24 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for HasOnlyReadOnly
*/
-public class HasOnlyReadOnlyTest {
+class HasOnlyReadOnlyTest {
private final HasOnlyReadOnly model = new HasOnlyReadOnly();
/**
* Model tests for HasOnlyReadOnly
*/
@Test
- public void testHasOnlyReadOnly() {
+ void testHasOnlyReadOnly() {
// TODO: test HasOnlyReadOnly
}
@@ -43,7 +40,7 @@ public class HasOnlyReadOnlyTest {
* Test the property 'bar'
*/
@Test
- public void barTest() {
+ void barTest() {
// TODO: test bar
}
@@ -51,7 +48,7 @@ public class HasOnlyReadOnlyTest {
* Test the property 'foo'
*/
@Test
- public void fooTest() {
+ void fooTest() {
// TODO: test foo
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/MapTestTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/MapTestTest.java
index 8d1b64dfce7..3752c5ba31f 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/MapTestTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/MapTestTest.java
@@ -18,27 +18,23 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.util.HashMap;
-import java.util.List;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for MapTest
*/
-public class MapTestTest {
+class MapTestTest {
private final MapTest model = new MapTest();
/**
* Model tests for MapTest
*/
@Test
- public void testMapTest() {
+ void testMapTest() {
// TODO: test MapTest
}
@@ -46,7 +42,7 @@ public class MapTestTest {
* Test the property 'mapMapOfString'
*/
@Test
- public void mapMapOfStringTest() {
+ void mapMapOfStringTest() {
// TODO: test mapMapOfString
}
@@ -54,7 +50,7 @@ public class MapTestTest {
* Test the property 'mapOfEnumString'
*/
@Test
- public void mapOfEnumStringTest() {
+ void mapOfEnumStringTest() {
// TODO: test mapOfEnumString
}
@@ -62,7 +58,7 @@ public class MapTestTest {
* Test the property 'directMap'
*/
@Test
- public void directMapTest() {
+ void directMapTest() {
// TODO: test directMap
}
@@ -70,7 +66,7 @@ public class MapTestTest {
* Test the property 'indirectMap'
*/
@Test
- public void indirectMapTest() {
+ void indirectMapTest() {
// TODO: test indirectMap
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java
index ea6eee23f88..0f47e193af8 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java
@@ -18,30 +18,26 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
+import java.time.OffsetDateTime;
import java.util.HashMap;
-import java.util.List;
import java.util.Map;
import java.util.UUID;
import org.openapitools.client.model.Animal;
-import java.time.OffsetDateTime;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for MixedPropertiesAndAdditionalPropertiesClass
*/
-public class MixedPropertiesAndAdditionalPropertiesClassTest {
+class MixedPropertiesAndAdditionalPropertiesClassTest {
private final MixedPropertiesAndAdditionalPropertiesClass model = new MixedPropertiesAndAdditionalPropertiesClass();
/**
* Model tests for MixedPropertiesAndAdditionalPropertiesClass
*/
@Test
- public void testMixedPropertiesAndAdditionalPropertiesClass() {
+ void testMixedPropertiesAndAdditionalPropertiesClass() {
// TODO: test MixedPropertiesAndAdditionalPropertiesClass
}
@@ -49,7 +45,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'uuid'
*/
@Test
- public void uuidTest() {
+ void uuidTest() {
// TODO: test uuid
}
@@ -57,7 +53,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'dateTime'
*/
@Test
- public void dateTimeTest() {
+ void dateTimeTest() {
// TODO: test dateTime
}
@@ -65,7 +61,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'map'
*/
@Test
- public void mapTest() {
+ void mapTest() {
// TODO: test map
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/Model200ResponseTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/Model200ResponseTest.java
index 20dee01ae5d..5743b70142b 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/Model200ResponseTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/Model200ResponseTest.java
@@ -18,24 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Model200Response
*/
-public class Model200ResponseTest {
+class Model200ResponseTest {
private final Model200Response model = new Model200Response();
/**
* Model tests for Model200Response
*/
@Test
- public void testModel200Response() {
+ void testModel200Response() {
// TODO: test Model200Response
}
@@ -43,7 +40,7 @@ public class Model200ResponseTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
@@ -51,7 +48,7 @@ public class Model200ResponseTest {
* Test the property 'propertyClass'
*/
@Test
- public void propertyClassTest() {
+ void propertyClassTest() {
// TODO: test propertyClass
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java
index 5dfb76f406a..436e4abd59e 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java
@@ -18,24 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelApiResponse
*/
-public class ModelApiResponseTest {
+class ModelApiResponseTest {
private final ModelApiResponse model = new ModelApiResponse();
/**
* Model tests for ModelApiResponse
*/
@Test
- public void testModelApiResponse() {
+ void testModelApiResponse() {
// TODO: test ModelApiResponse
}
@@ -43,7 +40,7 @@ public class ModelApiResponseTest {
* Test the property 'code'
*/
@Test
- public void codeTest() {
+ void codeTest() {
// TODO: test code
}
@@ -51,7 +48,7 @@ public class ModelApiResponseTest {
* Test the property 'type'
*/
@Test
- public void typeTest() {
+ void typeTest() {
// TODO: test type
}
@@ -59,7 +56,7 @@ public class ModelApiResponseTest {
* Test the property 'message'
*/
@Test
- public void messageTest() {
+ void messageTest() {
// TODO: test message
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ModelFileTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ModelFileTest.java
index 5b3fde28d4b..f128d7b9ac2 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ModelFileTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ModelFileTest.java
@@ -18,24 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelFile
*/
-public class ModelFileTest {
+class ModelFileTest {
private final ModelFile model = new ModelFile();
/**
* Model tests for ModelFile
*/
@Test
- public void testModelFile() {
+ void testModelFile() {
// TODO: test ModelFile
}
@@ -43,7 +40,7 @@ public class ModelFileTest {
* Test the property 'sourceURI'
*/
@Test
- public void sourceURITest() {
+ void sourceURITest() {
// TODO: test sourceURI
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ModelListTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ModelListTest.java
index 36755ee2bd6..92273f48d23 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ModelListTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ModelListTest.java
@@ -18,24 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelList
*/
-public class ModelListTest {
+class ModelListTest {
private final ModelList model = new ModelList();
/**
* Model tests for ModelList
*/
@Test
- public void testModelList() {
+ void testModelList() {
// TODO: test ModelList
}
@@ -43,7 +40,7 @@ public class ModelListTest {
* Test the property '_123list'
*/
@Test
- public void _123listTest() {
+ void _123listTest() {
// TODO: test _123list
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ModelReturnTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ModelReturnTest.java
index a1517b158a5..1c5337654cd 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ModelReturnTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ModelReturnTest.java
@@ -18,24 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelReturn
*/
-public class ModelReturnTest {
+class ModelReturnTest {
private final ModelReturn model = new ModelReturn();
/**
* Model tests for ModelReturn
*/
@Test
- public void testModelReturn() {
+ void testModelReturn() {
// TODO: test ModelReturn
}
@@ -43,7 +40,7 @@ public class ModelReturnTest {
* Test the property '_return'
*/
@Test
- public void _returnTest() {
+ void _returnTest() {
// TODO: test _return
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/NameTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/NameTest.java
index d54b90ad166..1a6aa18fa20 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/NameTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/NameTest.java
@@ -18,24 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Name
*/
-public class NameTest {
+class NameTest {
private final Name model = new Name();
/**
* Model tests for Name
*/
@Test
- public void testName() {
+ void testName() {
// TODO: test Name
}
@@ -43,7 +40,7 @@ public class NameTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
@@ -51,7 +48,7 @@ public class NameTest {
* Test the property 'snakeCase'
*/
@Test
- public void snakeCaseTest() {
+ void snakeCaseTest() {
// TODO: test snakeCase
}
@@ -59,7 +56,7 @@ public class NameTest {
* Test the property 'property'
*/
@Test
- public void propertyTest() {
+ void propertyTest() {
// TODO: test property
}
@@ -67,7 +64,7 @@ public class NameTest {
* Test the property '_123number'
*/
@Test
- public void _123numberTest() {
+ void _123numberTest() {
// TODO: test _123number
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/NumberOnlyTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/NumberOnlyTest.java
index 4238632f54b..8623386a5e9 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/NumberOnlyTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/NumberOnlyTest.java
@@ -18,25 +18,22 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for NumberOnly
*/
-public class NumberOnlyTest {
+class NumberOnlyTest {
private final NumberOnly model = new NumberOnly();
/**
* Model tests for NumberOnly
*/
@Test
- public void testNumberOnly() {
+ void testNumberOnly() {
// TODO: test NumberOnly
}
@@ -44,7 +41,7 @@ public class NumberOnlyTest {
* Test the property 'justNumber'
*/
@Test
- public void justNumberTest() {
+ void justNumberTest() {
// TODO: test justNumber
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/OrderTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/OrderTest.java
index 007f1aaea8a..670c2535646 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/OrderTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/OrderTest.java
@@ -18,25 +18,22 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.time.OffsetDateTime;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Order
*/
-public class OrderTest {
+class OrderTest {
private final Order model = new Order();
/**
* Model tests for Order
*/
@Test
- public void testOrder() {
+ void testOrder() {
// TODO: test Order
}
@@ -44,7 +41,7 @@ public class OrderTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -52,7 +49,7 @@ public class OrderTest {
* Test the property 'petId'
*/
@Test
- public void petIdTest() {
+ void petIdTest() {
// TODO: test petId
}
@@ -60,7 +57,7 @@ public class OrderTest {
* Test the property 'quantity'
*/
@Test
- public void quantityTest() {
+ void quantityTest() {
// TODO: test quantity
}
@@ -68,7 +65,7 @@ public class OrderTest {
* Test the property 'shipDate'
*/
@Test
- public void shipDateTest() {
+ void shipDateTest() {
// TODO: test shipDate
}
@@ -76,7 +73,7 @@ public class OrderTest {
* Test the property 'status'
*/
@Test
- public void statusTest() {
+ void statusTest() {
// TODO: test status
}
@@ -84,7 +81,7 @@ public class OrderTest {
* Test the property 'complete'
*/
@Test
- public void completeTest() {
+ void completeTest() {
// TODO: test complete
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/OuterCompositeTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/OuterCompositeTest.java
index 527a5df91af..870a977da94 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/OuterCompositeTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/OuterCompositeTest.java
@@ -18,25 +18,22 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for OuterComposite
*/
-public class OuterCompositeTest {
+class OuterCompositeTest {
private final OuterComposite model = new OuterComposite();
/**
* Model tests for OuterComposite
*/
@Test
- public void testOuterComposite() {
+ void testOuterComposite() {
// TODO: test OuterComposite
}
@@ -44,7 +41,7 @@ public class OuterCompositeTest {
* Test the property 'myNumber'
*/
@Test
- public void myNumberTest() {
+ void myNumberTest() {
// TODO: test myNumber
}
@@ -52,7 +49,7 @@ public class OuterCompositeTest {
* Test the property 'myString'
*/
@Test
- public void myStringTest() {
+ void myStringTest() {
// TODO: test myString
}
@@ -60,7 +57,7 @@ public class OuterCompositeTest {
* Test the property 'myBoolean'
*/
@Test
- public void myBooleanTest() {
+ void myBooleanTest() {
// TODO: test myBoolean
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/OuterEnumTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/OuterEnumTest.java
index cf0ebae0faf..0333ee657a0 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/OuterEnumTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/OuterEnumTest.java
@@ -13,20 +13,19 @@
package org.openapitools.client.model;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for OuterEnum
*/
-public class OuterEnumTest {
+class OuterEnumTest {
/**
* Model tests for OuterEnum
*/
@Test
- public void testOuterEnum() {
+ void testOuterEnum() {
// TODO: test OuterEnum
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/PetTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/PetTest.java
index 865e589be84..2e4303f1e4b 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/PetTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/PetTest.java
@@ -18,30 +18,29 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
+import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Set;
import org.openapitools.client.model.Category;
import org.openapitools.client.model.Tag;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Pet
*/
-public class PetTest {
+class PetTest {
private final Pet model = new Pet();
/**
* Model tests for Pet
*/
@Test
- public void testPet() {
+ void testPet() {
// TODO: test Pet
}
@@ -49,7 +48,7 @@ public class PetTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -57,7 +56,7 @@ public class PetTest {
* Test the property 'category'
*/
@Test
- public void categoryTest() {
+ void categoryTest() {
// TODO: test category
}
@@ -65,7 +64,7 @@ public class PetTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
@@ -73,7 +72,7 @@ public class PetTest {
* Test the property 'photoUrls'
*/
@Test
- public void photoUrlsTest() {
+ void photoUrlsTest() {
// TODO: test photoUrls
}
@@ -81,7 +80,7 @@ public class PetTest {
* Test the property 'tags'
*/
@Test
- public void tagsTest() {
+ void tagsTest() {
// TODO: test tags
}
@@ -89,7 +88,7 @@ public class PetTest {
* Test the property 'status'
*/
@Test
- public void statusTest() {
+ void statusTest() {
// TODO: test status
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java
index 5d460c3c697..c56da4290fa 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java
@@ -18,24 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ReadOnlyFirst
*/
-public class ReadOnlyFirstTest {
+class ReadOnlyFirstTest {
private final ReadOnlyFirst model = new ReadOnlyFirst();
/**
* Model tests for ReadOnlyFirst
*/
@Test
- public void testReadOnlyFirst() {
+ void testReadOnlyFirst() {
// TODO: test ReadOnlyFirst
}
@@ -43,7 +40,7 @@ public class ReadOnlyFirstTest {
* Test the property 'bar'
*/
@Test
- public void barTest() {
+ void barTest() {
// TODO: test bar
}
@@ -51,7 +48,7 @@ public class ReadOnlyFirstTest {
* Test the property 'baz'
*/
@Test
- public void bazTest() {
+ void bazTest() {
// TODO: test baz
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java
index da6a64c20f6..9501cf722d6 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java
@@ -18,24 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for SpecialModelName
*/
-public class SpecialModelNameTest {
+class SpecialModelNameTest {
private final SpecialModelName model = new SpecialModelName();
/**
* Model tests for SpecialModelName
*/
@Test
- public void testSpecialModelName() {
+ void testSpecialModelName() {
// TODO: test SpecialModelName
}
@@ -43,7 +40,7 @@ public class SpecialModelNameTest {
* Test the property '$specialPropertyName'
*/
@Test
- public void $specialPropertyNameTest() {
+ void $specialPropertyNameTest() {
// TODO: test $specialPropertyName
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/TagTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/TagTest.java
index 51852d80058..dc9cf9742ef 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/TagTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/TagTest.java
@@ -18,24 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Tag
*/
-public class TagTest {
+class TagTest {
private final Tag model = new Tag();
/**
* Model tests for Tag
*/
@Test
- public void testTag() {
+ void testTag() {
// TODO: test Tag
}
@@ -43,7 +40,7 @@ public class TagTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -51,7 +48,7 @@ public class TagTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java
index 16918aa98d9..7ee75c35731 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/TypeHolderDefaultTest.java
@@ -18,27 +18,25 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for TypeHolderDefault
*/
-public class TypeHolderDefaultTest {
+class TypeHolderDefaultTest {
private final TypeHolderDefault model = new TypeHolderDefault();
/**
* Model tests for TypeHolderDefault
*/
@Test
- public void testTypeHolderDefault() {
+ void testTypeHolderDefault() {
// TODO: test TypeHolderDefault
}
@@ -46,7 +44,7 @@ public class TypeHolderDefaultTest {
* Test the property 'stringItem'
*/
@Test
- public void stringItemTest() {
+ void stringItemTest() {
// TODO: test stringItem
}
@@ -54,7 +52,7 @@ public class TypeHolderDefaultTest {
* Test the property 'numberItem'
*/
@Test
- public void numberItemTest() {
+ void numberItemTest() {
// TODO: test numberItem
}
@@ -62,7 +60,7 @@ public class TypeHolderDefaultTest {
* Test the property 'integerItem'
*/
@Test
- public void integerItemTest() {
+ void integerItemTest() {
// TODO: test integerItem
}
@@ -70,7 +68,7 @@ public class TypeHolderDefaultTest {
* Test the property 'boolItem'
*/
@Test
- public void boolItemTest() {
+ void boolItemTest() {
// TODO: test boolItem
}
@@ -78,7 +76,7 @@ public class TypeHolderDefaultTest {
* Test the property 'arrayItem'
*/
@Test
- public void arrayItemTest() {
+ void arrayItemTest() {
// TODO: test arrayItem
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java
index 53d531b37ea..5c77882f500 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/TypeHolderExampleTest.java
@@ -18,27 +18,25 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for TypeHolderExample
*/
-public class TypeHolderExampleTest {
+class TypeHolderExampleTest {
private final TypeHolderExample model = new TypeHolderExample();
/**
* Model tests for TypeHolderExample
*/
@Test
- public void testTypeHolderExample() {
+ void testTypeHolderExample() {
// TODO: test TypeHolderExample
}
@@ -46,7 +44,7 @@ public class TypeHolderExampleTest {
* Test the property 'stringItem'
*/
@Test
- public void stringItemTest() {
+ void stringItemTest() {
// TODO: test stringItem
}
@@ -54,7 +52,7 @@ public class TypeHolderExampleTest {
* Test the property 'numberItem'
*/
@Test
- public void numberItemTest() {
+ void numberItemTest() {
// TODO: test numberItem
}
@@ -62,7 +60,7 @@ public class TypeHolderExampleTest {
* Test the property 'floatItem'
*/
@Test
- public void floatItemTest() {
+ void floatItemTest() {
// TODO: test floatItem
}
@@ -70,7 +68,7 @@ public class TypeHolderExampleTest {
* Test the property 'integerItem'
*/
@Test
- public void integerItemTest() {
+ void integerItemTest() {
// TODO: test integerItem
}
@@ -78,7 +76,7 @@ public class TypeHolderExampleTest {
* Test the property 'boolItem'
*/
@Test
- public void boolItemTest() {
+ void boolItemTest() {
// TODO: test boolItem
}
@@ -86,7 +84,7 @@ public class TypeHolderExampleTest {
* Test the property 'arrayItem'
*/
@Test
- public void arrayItemTest() {
+ void arrayItemTest() {
// TODO: test arrayItem
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/UserTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/UserTest.java
index 335a8f560bb..69d274133b9 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/UserTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/UserTest.java
@@ -18,24 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for User
*/
-public class UserTest {
+class UserTest {
private final User model = new User();
/**
* Model tests for User
*/
@Test
- public void testUser() {
+ void testUser() {
// TODO: test User
}
@@ -43,7 +40,7 @@ public class UserTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -51,7 +48,7 @@ public class UserTest {
* Test the property 'username'
*/
@Test
- public void usernameTest() {
+ void usernameTest() {
// TODO: test username
}
@@ -59,7 +56,7 @@ public class UserTest {
* Test the property 'firstName'
*/
@Test
- public void firstNameTest() {
+ void firstNameTest() {
// TODO: test firstName
}
@@ -67,7 +64,7 @@ public class UserTest {
* Test the property 'lastName'
*/
@Test
- public void lastNameTest() {
+ void lastNameTest() {
// TODO: test lastName
}
@@ -75,7 +72,7 @@ public class UserTest {
* Test the property 'email'
*/
@Test
- public void emailTest() {
+ void emailTest() {
// TODO: test email
}
@@ -83,7 +80,7 @@ public class UserTest {
* Test the property 'password'
*/
@Test
- public void passwordTest() {
+ void passwordTest() {
// TODO: test password
}
@@ -91,7 +88,7 @@ public class UserTest {
* Test the property 'phone'
*/
@Test
- public void phoneTest() {
+ void phoneTest() {
// TODO: test phone
}
@@ -99,7 +96,7 @@ public class UserTest {
* Test the property 'userStatus'
*/
@Test
- public void userStatusTest() {
+ void userStatusTest() {
// TODO: test userStatus
}
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/XmlItemTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/XmlItemTest.java
index d988813dbb2..d2e45fadf56 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/XmlItemTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/model/XmlItemTest.java
@@ -18,27 +18,25 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import io.swagger.annotations.ApiModel;
-import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
import java.util.ArrayList;
+import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
-
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for XmlItem
*/
-public class XmlItemTest {
+class XmlItemTest {
private final XmlItem model = new XmlItem();
/**
* Model tests for XmlItem
*/
@Test
- public void testXmlItem() {
+ void testXmlItem() {
// TODO: test XmlItem
}
@@ -46,7 +44,7 @@ public class XmlItemTest {
* Test the property 'attributeString'
*/
@Test
- public void attributeStringTest() {
+ void attributeStringTest() {
// TODO: test attributeString
}
@@ -54,7 +52,7 @@ public class XmlItemTest {
* Test the property 'attributeNumber'
*/
@Test
- public void attributeNumberTest() {
+ void attributeNumberTest() {
// TODO: test attributeNumber
}
@@ -62,7 +60,7 @@ public class XmlItemTest {
* Test the property 'attributeInteger'
*/
@Test
- public void attributeIntegerTest() {
+ void attributeIntegerTest() {
// TODO: test attributeInteger
}
@@ -70,7 +68,7 @@ public class XmlItemTest {
* Test the property 'attributeBoolean'
*/
@Test
- public void attributeBooleanTest() {
+ void attributeBooleanTest() {
// TODO: test attributeBoolean
}
@@ -78,7 +76,7 @@ public class XmlItemTest {
* Test the property 'wrappedArray'
*/
@Test
- public void wrappedArrayTest() {
+ void wrappedArrayTest() {
// TODO: test wrappedArray
}
@@ -86,7 +84,7 @@ public class XmlItemTest {
* Test the property 'nameString'
*/
@Test
- public void nameStringTest() {
+ void nameStringTest() {
// TODO: test nameString
}
@@ -94,7 +92,7 @@ public class XmlItemTest {
* Test the property 'nameNumber'
*/
@Test
- public void nameNumberTest() {
+ void nameNumberTest() {
// TODO: test nameNumber
}
@@ -102,7 +100,7 @@ public class XmlItemTest {
* Test the property 'nameInteger'
*/
@Test
- public void nameIntegerTest() {
+ void nameIntegerTest() {
// TODO: test nameInteger
}
@@ -110,7 +108,7 @@ public class XmlItemTest {
* Test the property 'nameBoolean'
*/
@Test
- public void nameBooleanTest() {
+ void nameBooleanTest() {
// TODO: test nameBoolean
}
@@ -118,7 +116,7 @@ public class XmlItemTest {
* Test the property 'nameArray'
*/
@Test
- public void nameArrayTest() {
+ void nameArrayTest() {
// TODO: test nameArray
}
@@ -126,7 +124,7 @@ public class XmlItemTest {
* Test the property 'nameWrappedArray'
*/
@Test
- public void nameWrappedArrayTest() {
+ void nameWrappedArrayTest() {
// TODO: test nameWrappedArray
}
@@ -134,7 +132,7 @@ public class XmlItemTest {
* Test the property 'prefixString'
*/
@Test
- public void prefixStringTest() {
+ void prefixStringTest() {
// TODO: test prefixString
}
@@ -142,7 +140,7 @@ public class XmlItemTest {
* Test the property 'prefixNumber'
*/
@Test
- public void prefixNumberTest() {
+ void prefixNumberTest() {
// TODO: test prefixNumber
}
@@ -150,7 +148,7 @@ public class XmlItemTest {
* Test the property 'prefixInteger'
*/
@Test
- public void prefixIntegerTest() {
+ void prefixIntegerTest() {
// TODO: test prefixInteger
}
@@ -158,7 +156,7 @@ public class XmlItemTest {
* Test the property 'prefixBoolean'
*/
@Test
- public void prefixBooleanTest() {
+ void prefixBooleanTest() {
// TODO: test prefixBoolean
}
@@ -166,7 +164,7 @@ public class XmlItemTest {
* Test the property 'prefixArray'
*/
@Test
- public void prefixArrayTest() {
+ void prefixArrayTest() {
// TODO: test prefixArray
}
@@ -174,7 +172,7 @@ public class XmlItemTest {
* Test the property 'prefixWrappedArray'
*/
@Test
- public void prefixWrappedArrayTest() {
+ void prefixWrappedArrayTest() {
// TODO: test prefixWrappedArray
}
@@ -182,7 +180,7 @@ public class XmlItemTest {
* Test the property 'namespaceString'
*/
@Test
- public void namespaceStringTest() {
+ void namespaceStringTest() {
// TODO: test namespaceString
}
@@ -190,7 +188,7 @@ public class XmlItemTest {
* Test the property 'namespaceNumber'
*/
@Test
- public void namespaceNumberTest() {
+ void namespaceNumberTest() {
// TODO: test namespaceNumber
}
@@ -198,7 +196,7 @@ public class XmlItemTest {
* Test the property 'namespaceInteger'
*/
@Test
- public void namespaceIntegerTest() {
+ void namespaceIntegerTest() {
// TODO: test namespaceInteger
}
@@ -206,7 +204,7 @@ public class XmlItemTest {
* Test the property 'namespaceBoolean'
*/
@Test
- public void namespaceBooleanTest() {
+ void namespaceBooleanTest() {
// TODO: test namespaceBoolean
}
@@ -214,7 +212,7 @@ public class XmlItemTest {
* Test the property 'namespaceArray'
*/
@Test
- public void namespaceArrayTest() {
+ void namespaceArrayTest() {
// TODO: test namespaceArray
}
@@ -222,7 +220,7 @@ public class XmlItemTest {
* Test the property 'namespaceWrappedArray'
*/
@Test
- public void namespaceWrappedArrayTest() {
+ void namespaceWrappedArrayTest() {
// TODO: test namespaceWrappedArray
}
@@ -230,7 +228,7 @@ public class XmlItemTest {
* Test the property 'prefixNsString'
*/
@Test
- public void prefixNsStringTest() {
+ void prefixNsStringTest() {
// TODO: test prefixNsString
}
@@ -238,7 +236,7 @@ public class XmlItemTest {
* Test the property 'prefixNsNumber'
*/
@Test
- public void prefixNsNumberTest() {
+ void prefixNsNumberTest() {
// TODO: test prefixNsNumber
}
@@ -246,7 +244,7 @@ public class XmlItemTest {
* Test the property 'prefixNsInteger'
*/
@Test
- public void prefixNsIntegerTest() {
+ void prefixNsIntegerTest() {
// TODO: test prefixNsInteger
}
@@ -254,7 +252,7 @@ public class XmlItemTest {
* Test the property 'prefixNsBoolean'
*/
@Test
- public void prefixNsBooleanTest() {
+ void prefixNsBooleanTest() {
// TODO: test prefixNsBoolean
}
@@ -262,7 +260,7 @@ public class XmlItemTest {
* Test the property 'prefixNsArray'
*/
@Test
- public void prefixNsArrayTest() {
+ void prefixNsArrayTest() {
// TODO: test prefixNsArray
}
@@ -270,7 +268,7 @@ public class XmlItemTest {
* Test the property 'prefixNsWrappedArray'
*/
@Test
- public void prefixNsWrappedArrayTest() {
+ void prefixNsWrappedArrayTest() {
// TODO: test prefixNsWrappedArray
}
diff --git a/samples/client/petstore/java/vertx/build.gradle b/samples/client/petstore/java/vertx/build.gradle
index e3e1ea26d55..f39d9ce699f 100644
--- a/samples/client/petstore/java/vertx/build.gradle
+++ b/samples/client/petstore/java/vertx/build.gradle
@@ -33,7 +33,7 @@ ext {
jackson_version = "2.17.1"
jackson_databind_version = "2.17.1"
vertx_version = "3.5.2"
- junit_version = "4.13.2"
+ junit_version = "5.10.3"
jackson_databind_nullable_version = "0.2.6"
jakarta_annotation_version = "1.3.5"
}
@@ -49,6 +49,6 @@ dependencies {
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version"
implementation "org.openapitools:jackson-databind-nullable:$jackson_databind_nullable_version"
implementation "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version"
- testImplementation "junit:junit:$junit_version"
+ testImplementation "org.junit.jupiter:junit-jupiter-api:$junit_version"
testImplementation "io.vertx:vertx-unit:$vertx_version"
}
diff --git a/samples/client/petstore/java/vertx/pom.xml b/samples/client/petstore/java/vertx/pom.xml
index eeb074ccb8f..bb041a21bbc 100644
--- a/samples/client/petstore/java/vertx/pom.xml
+++ b/samples/client/petstore/java/vertx/pom.xml
@@ -254,8 +254,8 @@
- junit
- junit
+ org.junit.jupiter
+ junit-jupiter-api
${junit-version}
test
@@ -274,6 +274,6 @@
2.17.1
0.2.6
1.3.5
- 4.13.2
+ 5.10.3
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java
index 6573a5438c8..249eceb90ae 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/AnotherFakeApiTest.java
@@ -16,11 +16,10 @@ import org.openapitools.client.model.Client;
import org.openapitools.client.Configuration;
-import org.junit.Test;
-import org.junit.Ignore;
-import org.junit.BeforeClass;
-import org.junit.Rule;
-import org.junit.runner.RunWith;
+import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
@@ -41,24 +40,16 @@ import java.util.Map;
/**
* API tests for AnotherFakeApi
*/
-@RunWith(VertxUnitRunner.class)
-@Ignore
+@Disabled
public class AnotherFakeApiTest {
private AnotherFakeApi api;
- @Rule
- public RunTestOnContext rule = new RunTestOnContext();
-
- @BeforeClass
+ @BeforeAll
public void setupApiClient() {
- JsonObject config = new JsonObject();
- Vertx vertx = rule.vertx();
- Configuration.setupDefaultApiClient(vertx, config);
-
api = new AnotherFakeApiImpl();
}
-
+
/**
* To test special tags
* To test special tags and operation ID starting with number
@@ -74,5 +65,4 @@ public class AnotherFakeApiTest {
async.complete();
});
}
-
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/DefaultApiTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/DefaultApiTest.java
index 3a0c37e3c7d..84ffe45ce61 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/DefaultApiTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/DefaultApiTest.java
@@ -16,11 +16,10 @@ import org.openapitools.client.model.FooGetDefaultResponse;
import org.openapitools.client.Configuration;
-import org.junit.Test;
-import org.junit.Ignore;
-import org.junit.BeforeClass;
-import org.junit.Rule;
-import org.junit.runner.RunWith;
+import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
@@ -41,24 +40,16 @@ import java.util.Map;
/**
* API tests for DefaultApi
*/
-@RunWith(VertxUnitRunner.class)
-@Ignore
+@Disabled
public class DefaultApiTest {
private DefaultApi api;
- @Rule
- public RunTestOnContext rule = new RunTestOnContext();
-
- @BeforeClass
+ @BeforeAll
public void setupApiClient() {
- JsonObject config = new JsonObject();
- Vertx vertx = rule.vertx();
- Configuration.setupDefaultApiClient(vertx, config);
-
api = new DefaultApiImpl();
}
-
+
/**
*
*
@@ -73,5 +64,4 @@ public class DefaultApiTest {
async.complete();
});
}
-
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/FakeApiTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/FakeApiTest.java
index 4fa25e25e50..2004d380367 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/FakeApiTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/FakeApiTest.java
@@ -14,6 +14,7 @@ package org.openapitools.client.api;
import io.vertx.core.file.AsyncFile;
import java.math.BigDecimal;
+import org.openapitools.client.model.ChildWithNullable;
import org.openapitools.client.model.Client;
import org.openapitools.client.model.EnumClass;
import org.openapitools.client.model.FakeBigDecimalMap200Response;
@@ -24,15 +25,15 @@ import java.time.OffsetDateTime;
import org.openapitools.client.model.OuterComposite;
import org.openapitools.client.model.OuterObjectWithEnumProperty;
import org.openapitools.client.model.Pet;
+import org.openapitools.client.model.TestInlineFreeformAdditionalPropertiesRequest;
import org.openapitools.client.model.User;
import org.openapitools.client.Configuration;
-import org.junit.Test;
-import org.junit.Ignore;
-import org.junit.BeforeClass;
-import org.junit.Rule;
-import org.junit.runner.RunWith;
+import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
@@ -53,24 +54,16 @@ import java.util.Map;
/**
* API tests for FakeApi
*/
-@RunWith(VertxUnitRunner.class)
-@Ignore
+@Disabled
public class FakeApiTest {
private FakeApi api;
- @Rule
- public RunTestOnContext rule = new RunTestOnContext();
-
- @BeforeClass
+ @BeforeAll
public void setupApiClient() {
- JsonObject config = new JsonObject();
- Vertx vertx = rule.vertx();
- Configuration.setupDefaultApiClient(vertx, config);
-
api = new FakeApiImpl();
}
-
+
/**
*
* for Java apache and Java native, test toUrlQueryString for maps with BegDecimal keys
@@ -85,7 +78,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
* Health check endpoint
*
@@ -100,7 +92,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
* test http signature authentication
*
@@ -118,7 +109,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
*
* Test serialization of outer boolean types
@@ -134,7 +124,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
*
* Test serialization of object with outer number type
@@ -150,7 +139,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
*
* Test serialization of outer number types
@@ -166,7 +154,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
*
* Test serialization of outer string types
@@ -182,7 +169,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
*
* Test serialization of enum (int) properties with examples
@@ -198,7 +184,21 @@ public class FakeApiTest {
async.complete();
});
}
-
+ /**
+ * test referenced additionalProperties
+ *
+ *
+ * @param context Vertx test context for doing assertions
+ */
+ @Test
+ public void testAdditionalPropertiesReferenceTest(TestContext testContext) {
+ Async async = testContext.async();
+ Map requestBody = null;
+ api.testAdditionalPropertiesReference(requestBody, result -> {
+ // TODO: test validations
+ async.complete();
+ });
+ }
/**
*
* For this test, the body has to be a binary file.
@@ -214,7 +214,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
*
* For this test, the body for this request must reference a schema named `File`.
@@ -230,7 +229,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
*
*
@@ -247,7 +245,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
* To test \"client\" model
* To test \"client\" model
@@ -263,7 +260,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
* Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
* Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
@@ -292,7 +288,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
* To test enum parameters
* To test enum parameters
@@ -316,7 +311,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
* Fake endpoint to test group parameters (optional)
* Fake endpoint to test group parameters (optional)
@@ -337,7 +331,6 @@ public class FakeApiTest {
async.complete();
});
}
-
/**
* test inline additionalProperties
*
@@ -353,7 +346,21 @@ public class FakeApiTest {
async.complete();
});
}
-
+ /**
+ * test inline free-form additionalProperties
+ *
+ *
+ * @param context Vertx test context for doing assertions
+ */
+ @Test
+ public void testInlineFreeformAdditionalPropertiesTest(TestContext testContext) {
+ Async async = testContext.async();
+ TestInlineFreeformAdditionalPropertiesRequest testInlineFreeformAdditionalPropertiesRequest = null;
+ api.testInlineFreeformAdditionalProperties(testInlineFreeformAdditionalPropertiesRequest, result -> {
+ // TODO: test validations
+ async.complete();
+ });
+ }
/**
* test json serialization of form data
*
@@ -370,7 +377,21 @@ public class FakeApiTest {
async.complete();
});
}
-
+ /**
+ * test nullable parent property
+ *
+ *
+ * @param context Vertx test context for doing assertions
+ */
+ @Test
+ public void testNullableTest(TestContext testContext) {
+ Async async = testContext.async();
+ ChildWithNullable childWithNullable = null;
+ api.testNullable(childWithNullable, result -> {
+ // TODO: test validations
+ async.complete();
+ });
+ }
/**
*
* To test the collection format in query parameters
@@ -392,5 +413,19 @@ public class FakeApiTest {
async.complete();
});
}
-
+ /**
+ * test referenced string map
+ *
+ *
+ * @param context Vertx test context for doing assertions
+ */
+ @Test
+ public void testStringMapReferenceTest(TestContext testContext) {
+ Async async = testContext.async();
+ Map requestBody = null;
+ api.testStringMapReference(requestBody, result -> {
+ // TODO: test validations
+ async.complete();
+ });
+ }
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java
index 47a43e04405..692c23f6bd2 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/FakeClassnameTags123ApiTest.java
@@ -16,11 +16,10 @@ import org.openapitools.client.model.Client;
import org.openapitools.client.Configuration;
-import org.junit.Test;
-import org.junit.Ignore;
-import org.junit.BeforeClass;
-import org.junit.Rule;
-import org.junit.runner.RunWith;
+import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
@@ -41,24 +40,16 @@ import java.util.Map;
/**
* API tests for FakeClassnameTags123Api
*/
-@RunWith(VertxUnitRunner.class)
-@Ignore
+@Disabled
public class FakeClassnameTags123ApiTest {
private FakeClassnameTags123Api api;
- @Rule
- public RunTestOnContext rule = new RunTestOnContext();
-
- @BeforeClass
+ @BeforeAll
public void setupApiClient() {
- JsonObject config = new JsonObject();
- Vertx vertx = rule.vertx();
- Configuration.setupDefaultApiClient(vertx, config);
-
api = new FakeClassnameTags123ApiImpl();
}
-
+
/**
* To test class name in snake case
* To test class name in snake case
@@ -74,5 +65,4 @@ public class FakeClassnameTags123ApiTest {
async.complete();
});
}
-
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/PetApiTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/PetApiTest.java
index 0f640e564d3..18a10252a46 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/PetApiTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/PetApiTest.java
@@ -19,11 +19,10 @@ import java.util.Set;
import org.openapitools.client.Configuration;
-import org.junit.Test;
-import org.junit.Ignore;
-import org.junit.BeforeClass;
-import org.junit.Rule;
-import org.junit.runner.RunWith;
+import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
@@ -44,24 +43,16 @@ import java.util.Map;
/**
* API tests for PetApi
*/
-@RunWith(VertxUnitRunner.class)
-@Ignore
+@Disabled
public class PetApiTest {
private PetApi api;
- @Rule
- public RunTestOnContext rule = new RunTestOnContext();
-
- @BeforeClass
+ @BeforeAll
public void setupApiClient() {
- JsonObject config = new JsonObject();
- Vertx vertx = rule.vertx();
- Configuration.setupDefaultApiClient(vertx, config);
-
api = new PetApiImpl();
}
-
+
/**
* Add a new pet to the store
*
@@ -77,7 +68,6 @@ public class PetApiTest {
async.complete();
});
}
-
/**
* Deletes a pet
*
@@ -94,7 +84,6 @@ public class PetApiTest {
async.complete();
});
}
-
/**
* Finds Pets by status
* Multiple status values can be provided with comma separated strings
@@ -110,7 +99,6 @@ public class PetApiTest {
async.complete();
});
}
-
/**
* Finds Pets by tags
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
@@ -126,7 +114,6 @@ public class PetApiTest {
async.complete();
});
}
-
/**
* Find pet by ID
* Returns a single pet
@@ -142,7 +129,6 @@ public class PetApiTest {
async.complete();
});
}
-
/**
* Update an existing pet
*
@@ -158,7 +144,6 @@ public class PetApiTest {
async.complete();
});
}
-
/**
* Updates a pet in the store with form data
*
@@ -176,7 +161,6 @@ public class PetApiTest {
async.complete();
});
}
-
/**
* uploads an image
*
@@ -194,7 +178,6 @@ public class PetApiTest {
async.complete();
});
}
-
/**
* uploads an image (required)
*
@@ -212,5 +195,4 @@ public class PetApiTest {
async.complete();
});
}
-
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/StoreApiTest.java
index d95bd4fe822..757b3a802cc 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -16,11 +16,10 @@ import org.openapitools.client.model.Order;
import org.openapitools.client.Configuration;
-import org.junit.Test;
-import org.junit.Ignore;
-import org.junit.BeforeClass;
-import org.junit.Rule;
-import org.junit.runner.RunWith;
+import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
@@ -41,24 +40,16 @@ import java.util.Map;
/**
* API tests for StoreApi
*/
-@RunWith(VertxUnitRunner.class)
-@Ignore
+@Disabled
public class StoreApiTest {
private StoreApi api;
- @Rule
- public RunTestOnContext rule = new RunTestOnContext();
-
- @BeforeClass
+ @BeforeAll
public void setupApiClient() {
- JsonObject config = new JsonObject();
- Vertx vertx = rule.vertx();
- Configuration.setupDefaultApiClient(vertx, config);
-
api = new StoreApiImpl();
}
-
+
/**
* Delete purchase order by ID
* For valid response try integer IDs with value < 1000. Anything above 1000 or nonintegers will generate API errors
@@ -74,7 +65,6 @@ public class StoreApiTest {
async.complete();
});
}
-
/**
* Returns pet inventories by status
* Returns a map of status codes to quantities
@@ -89,7 +79,6 @@ public class StoreApiTest {
async.complete();
});
}
-
/**
* Find purchase order by ID
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
@@ -105,7 +94,6 @@ public class StoreApiTest {
async.complete();
});
}
-
/**
* Place an order for a pet
*
@@ -121,5 +109,4 @@ public class StoreApiTest {
async.complete();
});
}
-
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/UserApiTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/UserApiTest.java
index 166e90ee695..debaeec310f 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/UserApiTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/UserApiTest.java
@@ -17,11 +17,10 @@ import org.openapitools.client.model.User;
import org.openapitools.client.Configuration;
-import org.junit.Test;
-import org.junit.Ignore;
-import org.junit.BeforeClass;
-import org.junit.Rule;
-import org.junit.runner.RunWith;
+import org.junit.jupiter.api.BeforeAll;
+import org.junit.jupiter.api.BeforeEach;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
import io.vertx.core.AsyncResult;
import io.vertx.core.Handler;
@@ -42,24 +41,16 @@ import java.util.Map;
/**
* API tests for UserApi
*/
-@RunWith(VertxUnitRunner.class)
-@Ignore
+@Disabled
public class UserApiTest {
private UserApi api;
- @Rule
- public RunTestOnContext rule = new RunTestOnContext();
-
- @BeforeClass
+ @BeforeAll
public void setupApiClient() {
- JsonObject config = new JsonObject();
- Vertx vertx = rule.vertx();
- Configuration.setupDefaultApiClient(vertx, config);
-
api = new UserApiImpl();
}
-
+
/**
* Create user
* This can only be done by the logged in user.
@@ -75,7 +66,6 @@ public class UserApiTest {
async.complete();
});
}
-
/**
* Creates list of users with given input array
*
@@ -91,7 +81,6 @@ public class UserApiTest {
async.complete();
});
}
-
/**
* Creates list of users with given input array
*
@@ -107,7 +96,6 @@ public class UserApiTest {
async.complete();
});
}
-
/**
* Delete user
* This can only be done by the logged in user.
@@ -123,7 +111,6 @@ public class UserApiTest {
async.complete();
});
}
-
/**
* Get user by user name
*
@@ -139,7 +126,6 @@ public class UserApiTest {
async.complete();
});
}
-
/**
* Logs user into the system
*
@@ -156,7 +142,6 @@ public class UserApiTest {
async.complete();
});
}
-
/**
* Logs out current logged in user session
*
@@ -171,7 +156,6 @@ public class UserApiTest {
async.complete();
});
}
-
/**
* Updated user
* This can only be done by the logged in user.
@@ -188,5 +172,4 @@ public class UserApiTest {
async.complete();
});
}
-
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java
index 29bc5ae9694..6bdecfe07c9 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/AdditionalPropertiesClassTest.java
@@ -20,21 +20,21 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesClass
*/
-public class AdditionalPropertiesClassTest {
+class AdditionalPropertiesClassTest {
private final AdditionalPropertiesClass model = new AdditionalPropertiesClass();
/**
* Model tests for AdditionalPropertiesClass
*/
@Test
- public void testAdditionalPropertiesClass() {
+ void testAdditionalPropertiesClass() {
// TODO: test AdditionalPropertiesClass
}
@@ -42,7 +42,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapProperty'
*/
@Test
- public void mapPropertyTest() {
+ void mapPropertyTest() {
// TODO: test mapProperty
}
@@ -50,7 +50,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapOfMapProperty'
*/
@Test
- public void mapOfMapPropertyTest() {
+ void mapOfMapPropertyTest() {
// TODO: test mapOfMapProperty
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/AllOfWithSingleRefTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/AllOfWithSingleRefTest.java
index dad0e9235de..f4b06d323d6 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/AllOfWithSingleRefTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/AllOfWithSingleRefTest.java
@@ -19,21 +19,21 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import org.openapitools.client.model.SingleRefType;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for AllOfWithSingleRef
*/
-public class AllOfWithSingleRefTest {
+class AllOfWithSingleRefTest {
private final AllOfWithSingleRef model = new AllOfWithSingleRef();
/**
* Model tests for AllOfWithSingleRef
*/
@Test
- public void testAllOfWithSingleRef() {
+ void testAllOfWithSingleRef() {
// TODO: test AllOfWithSingleRef
}
@@ -41,7 +41,7 @@ public class AllOfWithSingleRefTest {
* Test the property 'username'
*/
@Test
- public void usernameTest() {
+ void usernameTest() {
// TODO: test username
}
@@ -49,7 +49,7 @@ public class AllOfWithSingleRefTest {
* Test the property 'singleRefType'
*/
@Test
- public void singleRefTypeTest() {
+ void singleRefTypeTest() {
// TODO: test singleRefType
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/AnimalTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/AnimalTest.java
index da5609b5489..24776d3cb51 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/AnimalTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/AnimalTest.java
@@ -21,21 +21,21 @@ import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Animal
*/
-public class AnimalTest {
+class AnimalTest {
private final Animal model = new Animal();
/**
* Model tests for Animal
*/
@Test
- public void testAnimal() {
+ void testAnimal() {
// TODO: test Animal
}
@@ -43,7 +43,7 @@ public class AnimalTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -51,7 +51,7 @@ public class AnimalTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java
index cbc199f1575..6bbe877044d 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnlyTest.java
@@ -22,21 +22,21 @@ import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayOfArrayOfNumberOnly
*/
-public class ArrayOfArrayOfNumberOnlyTest {
+class ArrayOfArrayOfNumberOnlyTest {
private final ArrayOfArrayOfNumberOnly model = new ArrayOfArrayOfNumberOnly();
/**
* Model tests for ArrayOfArrayOfNumberOnly
*/
@Test
- public void testArrayOfArrayOfNumberOnly() {
+ void testArrayOfArrayOfNumberOnly() {
// TODO: test ArrayOfArrayOfNumberOnly
}
@@ -44,7 +44,7 @@ public class ArrayOfArrayOfNumberOnlyTest {
* Test the property 'arrayArrayNumber'
*/
@Test
- public void arrayArrayNumberTest() {
+ void arrayArrayNumberTest() {
// TODO: test arrayArrayNumber
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java
index 762f9d6dc33..eaf908bb1ab 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ArrayOfNumberOnlyTest.java
@@ -22,21 +22,21 @@ import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayOfNumberOnly
*/
-public class ArrayOfNumberOnlyTest {
+class ArrayOfNumberOnlyTest {
private final ArrayOfNumberOnly model = new ArrayOfNumberOnly();
/**
* Model tests for ArrayOfNumberOnly
*/
@Test
- public void testArrayOfNumberOnly() {
+ void testArrayOfNumberOnly() {
// TODO: test ArrayOfNumberOnly
}
@@ -44,7 +44,7 @@ public class ArrayOfNumberOnlyTest {
* Test the property 'arrayNumber'
*/
@Test
- public void arrayNumberTest() {
+ void arrayNumberTest() {
// TODO: test arrayNumber
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ArrayTestTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ArrayTestTest.java
index 20dc34a8c51..99c6bcf5360 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ArrayTestTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ArrayTestTest.java
@@ -22,21 +22,21 @@ import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.openapitools.client.model.ReadOnlyFirst;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayTest
*/
-public class ArrayTestTest {
+class ArrayTestTest {
private final ArrayTest model = new ArrayTest();
/**
* Model tests for ArrayTest
*/
@Test
- public void testArrayTest() {
+ void testArrayTest() {
// TODO: test ArrayTest
}
@@ -44,7 +44,7 @@ public class ArrayTestTest {
* Test the property 'arrayOfString'
*/
@Test
- public void arrayOfStringTest() {
+ void arrayOfStringTest() {
// TODO: test arrayOfString
}
@@ -52,7 +52,7 @@ public class ArrayTestTest {
* Test the property 'arrayArrayOfInteger'
*/
@Test
- public void arrayArrayOfIntegerTest() {
+ void arrayArrayOfIntegerTest() {
// TODO: test arrayArrayOfInteger
}
@@ -60,7 +60,7 @@ public class ArrayTestTest {
* Test the property 'arrayArrayOfModel'
*/
@Test
- public void arrayArrayOfModelTest() {
+ void arrayArrayOfModelTest() {
// TODO: test arrayArrayOfModel
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/CapitalizationTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/CapitalizationTest.java
index 4fd3728ab89..a0217acd1f2 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/CapitalizationTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/CapitalizationTest.java
@@ -18,21 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Capitalization
*/
-public class CapitalizationTest {
+class CapitalizationTest {
private final Capitalization model = new Capitalization();
/**
* Model tests for Capitalization
*/
@Test
- public void testCapitalization() {
+ void testCapitalization() {
// TODO: test Capitalization
}
@@ -40,7 +40,7 @@ public class CapitalizationTest {
* Test the property 'smallCamel'
*/
@Test
- public void smallCamelTest() {
+ void smallCamelTest() {
// TODO: test smallCamel
}
@@ -48,7 +48,7 @@ public class CapitalizationTest {
* Test the property 'capitalCamel'
*/
@Test
- public void capitalCamelTest() {
+ void capitalCamelTest() {
// TODO: test capitalCamel
}
@@ -56,7 +56,7 @@ public class CapitalizationTest {
* Test the property 'smallSnake'
*/
@Test
- public void smallSnakeTest() {
+ void smallSnakeTest() {
// TODO: test smallSnake
}
@@ -64,7 +64,7 @@ public class CapitalizationTest {
* Test the property 'capitalSnake'
*/
@Test
- public void capitalSnakeTest() {
+ void capitalSnakeTest() {
// TODO: test capitalSnake
}
@@ -72,7 +72,7 @@ public class CapitalizationTest {
* Test the property 'scAETHFlowPoints'
*/
@Test
- public void scAETHFlowPointsTest() {
+ void scAETHFlowPointsTest() {
// TODO: test scAETHFlowPoints
}
@@ -80,7 +80,7 @@ public class CapitalizationTest {
* Test the property 'ATT_NAME'
*/
@Test
- public void ATT_NAMETest() {
+ void ATT_NAMETest() {
// TODO: test ATT_NAME
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/CatTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/CatTest.java
index d591bdd30ef..1b389a075be 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/CatTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/CatTest.java
@@ -22,21 +22,21 @@ import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import org.openapitools.client.model.Animal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Cat
*/
-public class CatTest {
+class CatTest {
private final Cat model = new Cat();
/**
* Model tests for Cat
*/
@Test
- public void testCat() {
+ void testCat() {
// TODO: test Cat
}
@@ -44,7 +44,7 @@ public class CatTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -52,7 +52,7 @@ public class CatTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
@@ -60,7 +60,7 @@ public class CatTest {
* Test the property 'declawed'
*/
@Test
- public void declawedTest() {
+ void declawedTest() {
// TODO: test declawed
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/CategoryTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/CategoryTest.java
index 12de38c0c08..22fcbd7f3cc 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/CategoryTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/CategoryTest.java
@@ -18,21 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Category
*/
-public class CategoryTest {
+class CategoryTest {
private final Category model = new Category();
/**
* Model tests for Category
*/
@Test
- public void testCategory() {
+ void testCategory() {
// TODO: test Category
}
@@ -40,7 +40,7 @@ public class CategoryTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -48,7 +48,7 @@ public class CategoryTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ChildWithNullableTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ChildWithNullableTest.java
index 2616181bec3..a89d26497bc 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ChildWithNullableTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ChildWithNullableTest.java
@@ -23,21 +23,21 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import org.openapitools.client.model.ParentWithNullable;
import org.openapitools.jackson.nullable.JsonNullable;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ChildWithNullable
*/
-public class ChildWithNullableTest {
+class ChildWithNullableTest {
private final ChildWithNullable model = new ChildWithNullable();
/**
* Model tests for ChildWithNullable
*/
@Test
- public void testChildWithNullable() {
+ void testChildWithNullable() {
// TODO: test ChildWithNullable
}
@@ -45,7 +45,7 @@ public class ChildWithNullableTest {
* Test the property 'type'
*/
@Test
- public void typeTest() {
+ void typeTest() {
// TODO: test type
}
@@ -53,7 +53,7 @@ public class ChildWithNullableTest {
* Test the property 'nullableProperty'
*/
@Test
- public void nullablePropertyTest() {
+ void nullablePropertyTest() {
// TODO: test nullableProperty
}
@@ -61,7 +61,7 @@ public class ChildWithNullableTest {
* Test the property 'otherProperty'
*/
@Test
- public void otherPropertyTest() {
+ void otherPropertyTest() {
// TODO: test otherProperty
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ClassModelTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ClassModelTest.java
index d1936d85e81..6ef5c744fbc 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ClassModelTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ClassModelTest.java
@@ -18,21 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ClassModel
*/
-public class ClassModelTest {
+class ClassModelTest {
private final ClassModel model = new ClassModel();
/**
* Model tests for ClassModel
*/
@Test
- public void testClassModel() {
+ void testClassModel() {
// TODO: test ClassModel
}
@@ -40,7 +40,7 @@ public class ClassModelTest {
* Test the property 'propertyClass'
*/
@Test
- public void propertyClassTest() {
+ void propertyClassTest() {
// TODO: test propertyClass
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ClientTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ClientTest.java
index 7aa0f5859ff..8028f11bc2b 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ClientTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ClientTest.java
@@ -18,21 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Client
*/
-public class ClientTest {
+class ClientTest {
private final Client model = new Client();
/**
* Model tests for Client
*/
@Test
- public void testClient() {
+ void testClient() {
// TODO: test Client
}
@@ -40,7 +40,7 @@ public class ClientTest {
* Test the property 'client'
*/
@Test
- public void clientTest() {
+ void clientTest() {
// TODO: test client
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/DeprecatedObjectTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/DeprecatedObjectTest.java
index 65fd3cc0b76..b04c2097b20 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/DeprecatedObjectTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/DeprecatedObjectTest.java
@@ -18,21 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for DeprecatedObject
*/
-public class DeprecatedObjectTest {
+class DeprecatedObjectTest {
private final DeprecatedObject model = new DeprecatedObject();
/**
* Model tests for DeprecatedObject
*/
@Test
- public void testDeprecatedObject() {
+ void testDeprecatedObject() {
// TODO: test DeprecatedObject
}
@@ -40,7 +40,7 @@ public class DeprecatedObjectTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/DogTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/DogTest.java
index 744c8a406fe..b2a12ab4c5e 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/DogTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/DogTest.java
@@ -22,21 +22,21 @@ import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import org.openapitools.client.model.Animal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Dog
*/
-public class DogTest {
+class DogTest {
private final Dog model = new Dog();
/**
* Model tests for Dog
*/
@Test
- public void testDog() {
+ void testDog() {
// TODO: test Dog
}
@@ -44,7 +44,7 @@ public class DogTest {
* Test the property 'className'
*/
@Test
- public void classNameTest() {
+ void classNameTest() {
// TODO: test className
}
@@ -52,7 +52,7 @@ public class DogTest {
* Test the property 'color'
*/
@Test
- public void colorTest() {
+ void colorTest() {
// TODO: test color
}
@@ -60,7 +60,7 @@ public class DogTest {
* Test the property 'breed'
*/
@Test
- public void breedTest() {
+ void breedTest() {
// TODO: test breed
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/EnumArraysTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/EnumArraysTest.java
index 694e4196138..4a755b0d442 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/EnumArraysTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/EnumArraysTest.java
@@ -21,21 +21,21 @@ import com.fasterxml.jackson.annotation.JsonValue;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for EnumArrays
*/
-public class EnumArraysTest {
+class EnumArraysTest {
private final EnumArrays model = new EnumArrays();
/**
* Model tests for EnumArrays
*/
@Test
- public void testEnumArrays() {
+ void testEnumArrays() {
// TODO: test EnumArrays
}
@@ -43,7 +43,7 @@ public class EnumArraysTest {
* Test the property 'justSymbol'
*/
@Test
- public void justSymbolTest() {
+ void justSymbolTest() {
// TODO: test justSymbol
}
@@ -51,7 +51,7 @@ public class EnumArraysTest {
* Test the property 'arrayEnum'
*/
@Test
- public void arrayEnumTest() {
+ void arrayEnumTest() {
// TODO: test arrayEnum
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/EnumClassTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/EnumClassTest.java
index 3f50e1bfb9e..48aa1a737fc 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/EnumClassTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/EnumClassTest.java
@@ -13,19 +13,19 @@
package org.openapitools.client.model;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for EnumClass
*/
-public class EnumClassTest {
+class EnumClassTest {
/**
* Model tests for EnumClass
*/
@Test
- public void testEnumClass() {
+ void testEnumClass() {
// TODO: test EnumClass
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/EnumTestTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/EnumTestTest.java
index 0a1fd0f4268..1e65944cbdc 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/EnumTestTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/EnumTestTest.java
@@ -26,21 +26,21 @@ import org.openapitools.jackson.nullable.JsonNullable;
import com.fasterxml.jackson.annotation.JsonIgnore;
import org.openapitools.jackson.nullable.JsonNullable;
import java.util.NoSuchElementException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for EnumTest
*/
-public class EnumTestTest {
+class EnumTestTest {
private final EnumTest model = new EnumTest();
/**
* Model tests for EnumTest
*/
@Test
- public void testEnumTest() {
+ void testEnumTest() {
// TODO: test EnumTest
}
@@ -48,7 +48,7 @@ public class EnumTestTest {
* Test the property 'enumString'
*/
@Test
- public void enumStringTest() {
+ void enumStringTest() {
// TODO: test enumString
}
@@ -56,7 +56,7 @@ public class EnumTestTest {
* Test the property 'enumStringRequired'
*/
@Test
- public void enumStringRequiredTest() {
+ void enumStringRequiredTest() {
// TODO: test enumStringRequired
}
@@ -64,7 +64,7 @@ public class EnumTestTest {
* Test the property 'enumInteger'
*/
@Test
- public void enumIntegerTest() {
+ void enumIntegerTest() {
// TODO: test enumInteger
}
@@ -72,7 +72,7 @@ public class EnumTestTest {
* Test the property 'enumNumber'
*/
@Test
- public void enumNumberTest() {
+ void enumNumberTest() {
// TODO: test enumNumber
}
@@ -80,7 +80,7 @@ public class EnumTestTest {
* Test the property 'outerEnum'
*/
@Test
- public void outerEnumTest() {
+ void outerEnumTest() {
// TODO: test outerEnum
}
@@ -88,7 +88,7 @@ public class EnumTestTest {
* Test the property 'outerEnumInteger'
*/
@Test
- public void outerEnumIntegerTest() {
+ void outerEnumIntegerTest() {
// TODO: test outerEnumInteger
}
@@ -96,7 +96,7 @@ public class EnumTestTest {
* Test the property 'outerEnumDefaultValue'
*/
@Test
- public void outerEnumDefaultValueTest() {
+ void outerEnumDefaultValueTest() {
// TODO: test outerEnumDefaultValue
}
@@ -104,7 +104,7 @@ public class EnumTestTest {
* Test the property 'outerEnumIntegerDefaultValue'
*/
@Test
- public void outerEnumIntegerDefaultValueTest() {
+ void outerEnumIntegerDefaultValueTest() {
// TODO: test outerEnumIntegerDefaultValue
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/FakeBigDecimalMap200ResponseTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/FakeBigDecimalMap200ResponseTest.java
index 88c1d374be6..3250ad91974 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/FakeBigDecimalMap200ResponseTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/FakeBigDecimalMap200ResponseTest.java
@@ -21,21 +21,21 @@ import com.fasterxml.jackson.annotation.JsonValue;
import java.math.BigDecimal;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for FakeBigDecimalMap200Response
*/
-public class FakeBigDecimalMap200ResponseTest {
+class FakeBigDecimalMap200ResponseTest {
private final FakeBigDecimalMap200Response model = new FakeBigDecimalMap200Response();
/**
* Model tests for FakeBigDecimalMap200Response
*/
@Test
- public void testFakeBigDecimalMap200Response() {
+ void testFakeBigDecimalMap200Response() {
// TODO: test FakeBigDecimalMap200Response
}
@@ -43,7 +43,7 @@ public class FakeBigDecimalMap200ResponseTest {
* Test the property 'someId'
*/
@Test
- public void someIdTest() {
+ void someIdTest() {
// TODO: test someId
}
@@ -51,7 +51,7 @@ public class FakeBigDecimalMap200ResponseTest {
* Test the property 'someMap'
*/
@Test
- public void someMapTest() {
+ void someMapTest() {
// TODO: test someMap
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java
index fb8827a1e88..0048cb2c749 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/FileSchemaTestClassTest.java
@@ -22,21 +22,21 @@ import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.openapitools.client.model.ModelFile;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for FileSchemaTestClass
*/
-public class FileSchemaTestClassTest {
+class FileSchemaTestClassTest {
private final FileSchemaTestClass model = new FileSchemaTestClass();
/**
* Model tests for FileSchemaTestClass
*/
@Test
- public void testFileSchemaTestClass() {
+ void testFileSchemaTestClass() {
// TODO: test FileSchemaTestClass
}
@@ -44,7 +44,7 @@ public class FileSchemaTestClassTest {
* Test the property '_file'
*/
@Test
- public void _fileTest() {
+ void _fileTest() {
// TODO: test _file
}
@@ -52,7 +52,7 @@ public class FileSchemaTestClassTest {
* Test the property 'files'
*/
@Test
- public void filesTest() {
+ void filesTest() {
// TODO: test files
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/FooGetDefaultResponseTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/FooGetDefaultResponseTest.java
index cd15af86ee9..81bc69c9a7b 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/FooGetDefaultResponseTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/FooGetDefaultResponseTest.java
@@ -19,21 +19,21 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import org.openapitools.client.model.Foo;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for FooGetDefaultResponse
*/
-public class FooGetDefaultResponseTest {
+class FooGetDefaultResponseTest {
private final FooGetDefaultResponse model = new FooGetDefaultResponse();
/**
* Model tests for FooGetDefaultResponse
*/
@Test
- public void testFooGetDefaultResponse() {
+ void testFooGetDefaultResponse() {
// TODO: test FooGetDefaultResponse
}
@@ -41,7 +41,7 @@ public class FooGetDefaultResponseTest {
* Test the property 'string'
*/
@Test
- public void stringTest() {
+ void stringTest() {
// TODO: test string
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/FooTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/FooTest.java
index 2a92367019b..a9e2c8c126e 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/FooTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/FooTest.java
@@ -18,21 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Foo
*/
-public class FooTest {
+class FooTest {
private final Foo model = new Foo();
/**
* Model tests for Foo
*/
@Test
- public void testFoo() {
+ void testFoo() {
// TODO: test Foo
}
@@ -40,7 +40,7 @@ public class FooTest {
* Test the property 'bar'
*/
@Test
- public void barTest() {
+ void barTest() {
// TODO: test bar
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/FormatTestTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/FormatTestTest.java
index 137d96ba0f4..1d42701a454 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/FormatTestTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/FormatTestTest.java
@@ -23,21 +23,21 @@ import java.math.BigDecimal;
import java.time.LocalDate;
import java.time.OffsetDateTime;
import java.util.UUID;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for FormatTest
*/
-public class FormatTestTest {
+class FormatTestTest {
private final FormatTest model = new FormatTest();
/**
* Model tests for FormatTest
*/
@Test
- public void testFormatTest() {
+ void testFormatTest() {
// TODO: test FormatTest
}
@@ -45,7 +45,7 @@ public class FormatTestTest {
* Test the property 'integer'
*/
@Test
- public void integerTest() {
+ void integerTest() {
// TODO: test integer
}
@@ -53,7 +53,7 @@ public class FormatTestTest {
* Test the property 'int32'
*/
@Test
- public void int32Test() {
+ void int32Test() {
// TODO: test int32
}
@@ -61,7 +61,7 @@ public class FormatTestTest {
* Test the property 'int64'
*/
@Test
- public void int64Test() {
+ void int64Test() {
// TODO: test int64
}
@@ -69,7 +69,7 @@ public class FormatTestTest {
* Test the property 'number'
*/
@Test
- public void numberTest() {
+ void numberTest() {
// TODO: test number
}
@@ -77,7 +77,7 @@ public class FormatTestTest {
* Test the property '_float'
*/
@Test
- public void _floatTest() {
+ void _floatTest() {
// TODO: test _float
}
@@ -85,7 +85,7 @@ public class FormatTestTest {
* Test the property '_double'
*/
@Test
- public void _doubleTest() {
+ void _doubleTest() {
// TODO: test _double
}
@@ -93,7 +93,7 @@ public class FormatTestTest {
* Test the property 'decimal'
*/
@Test
- public void decimalTest() {
+ void decimalTest() {
// TODO: test decimal
}
@@ -101,7 +101,7 @@ public class FormatTestTest {
* Test the property 'string'
*/
@Test
- public void stringTest() {
+ void stringTest() {
// TODO: test string
}
@@ -109,7 +109,7 @@ public class FormatTestTest {
* Test the property '_byte'
*/
@Test
- public void _byteTest() {
+ void _byteTest() {
// TODO: test _byte
}
@@ -117,7 +117,7 @@ public class FormatTestTest {
* Test the property 'binary'
*/
@Test
- public void binaryTest() {
+ void binaryTest() {
// TODO: test binary
}
@@ -125,7 +125,7 @@ public class FormatTestTest {
* Test the property 'date'
*/
@Test
- public void dateTest() {
+ void dateTest() {
// TODO: test date
}
@@ -133,7 +133,7 @@ public class FormatTestTest {
* Test the property 'dateTime'
*/
@Test
- public void dateTimeTest() {
+ void dateTimeTest() {
// TODO: test dateTime
}
@@ -141,7 +141,7 @@ public class FormatTestTest {
* Test the property 'uuid'
*/
@Test
- public void uuidTest() {
+ void uuidTest() {
// TODO: test uuid
}
@@ -149,7 +149,7 @@ public class FormatTestTest {
* Test the property 'password'
*/
@Test
- public void passwordTest() {
+ void passwordTest() {
// TODO: test password
}
@@ -157,7 +157,7 @@ public class FormatTestTest {
* Test the property 'patternWithDigits'
*/
@Test
- public void patternWithDigitsTest() {
+ void patternWithDigitsTest() {
// TODO: test patternWithDigits
}
@@ -165,7 +165,7 @@ public class FormatTestTest {
* Test the property 'patternWithDigitsAndDelimiter'
*/
@Test
- public void patternWithDigitsAndDelimiterTest() {
+ void patternWithDigitsAndDelimiterTest() {
// TODO: test patternWithDigitsAndDelimiter
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java
index bf777b061cc..908f0aff6ed 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/HasOnlyReadOnlyTest.java
@@ -18,21 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for HasOnlyReadOnly
*/
-public class HasOnlyReadOnlyTest {
+class HasOnlyReadOnlyTest {
private final HasOnlyReadOnly model = new HasOnlyReadOnly();
/**
* Model tests for HasOnlyReadOnly
*/
@Test
- public void testHasOnlyReadOnly() {
+ void testHasOnlyReadOnly() {
// TODO: test HasOnlyReadOnly
}
@@ -40,7 +40,7 @@ public class HasOnlyReadOnlyTest {
* Test the property 'bar'
*/
@Test
- public void barTest() {
+ void barTest() {
// TODO: test bar
}
@@ -48,7 +48,7 @@ public class HasOnlyReadOnlyTest {
* Test the property 'foo'
*/
@Test
- public void fooTest() {
+ void fooTest() {
// TODO: test foo
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/HealthCheckResultTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/HealthCheckResultTest.java
index e96ffaa18f4..0f45c2fcd5b 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/HealthCheckResultTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/HealthCheckResultTest.java
@@ -22,21 +22,21 @@ import org.openapitools.jackson.nullable.JsonNullable;
import com.fasterxml.jackson.annotation.JsonIgnore;
import org.openapitools.jackson.nullable.JsonNullable;
import java.util.NoSuchElementException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for HealthCheckResult
*/
-public class HealthCheckResultTest {
+class HealthCheckResultTest {
private final HealthCheckResult model = new HealthCheckResult();
/**
* Model tests for HealthCheckResult
*/
@Test
- public void testHealthCheckResult() {
+ void testHealthCheckResult() {
// TODO: test HealthCheckResult
}
@@ -44,7 +44,7 @@ public class HealthCheckResultTest {
* Test the property 'nullableMessage'
*/
@Test
- public void nullableMessageTest() {
+ void nullableMessageTest() {
// TODO: test nullableMessage
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/MapTestTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/MapTestTest.java
index 50e909f0381..3752c5ba31f 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/MapTestTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/MapTestTest.java
@@ -20,21 +20,21 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for MapTest
*/
-public class MapTestTest {
+class MapTestTest {
private final MapTest model = new MapTest();
/**
* Model tests for MapTest
*/
@Test
- public void testMapTest() {
+ void testMapTest() {
// TODO: test MapTest
}
@@ -42,7 +42,7 @@ public class MapTestTest {
* Test the property 'mapMapOfString'
*/
@Test
- public void mapMapOfStringTest() {
+ void mapMapOfStringTest() {
// TODO: test mapMapOfString
}
@@ -50,7 +50,7 @@ public class MapTestTest {
* Test the property 'mapOfEnumString'
*/
@Test
- public void mapOfEnumStringTest() {
+ void mapOfEnumStringTest() {
// TODO: test mapOfEnumString
}
@@ -58,7 +58,7 @@ public class MapTestTest {
* Test the property 'directMap'
*/
@Test
- public void directMapTest() {
+ void directMapTest() {
// TODO: test directMap
}
@@ -66,7 +66,7 @@ public class MapTestTest {
* Test the property 'indirectMap'
*/
@Test
- public void indirectMapTest() {
+ void indirectMapTest() {
// TODO: test indirectMap
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java
index b16858dc17e..0f47e193af8 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClassTest.java
@@ -23,21 +23,21 @@ import java.util.HashMap;
import java.util.Map;
import java.util.UUID;
import org.openapitools.client.model.Animal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for MixedPropertiesAndAdditionalPropertiesClass
*/
-public class MixedPropertiesAndAdditionalPropertiesClassTest {
+class MixedPropertiesAndAdditionalPropertiesClassTest {
private final MixedPropertiesAndAdditionalPropertiesClass model = new MixedPropertiesAndAdditionalPropertiesClass();
/**
* Model tests for MixedPropertiesAndAdditionalPropertiesClass
*/
@Test
- public void testMixedPropertiesAndAdditionalPropertiesClass() {
+ void testMixedPropertiesAndAdditionalPropertiesClass() {
// TODO: test MixedPropertiesAndAdditionalPropertiesClass
}
@@ -45,7 +45,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'uuid'
*/
@Test
- public void uuidTest() {
+ void uuidTest() {
// TODO: test uuid
}
@@ -53,7 +53,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'dateTime'
*/
@Test
- public void dateTimeTest() {
+ void dateTimeTest() {
// TODO: test dateTime
}
@@ -61,7 +61,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'map'
*/
@Test
- public void mapTest() {
+ void mapTest() {
// TODO: test map
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/Model200ResponseTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/Model200ResponseTest.java
index dd90f6799d3..5743b70142b 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/Model200ResponseTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/Model200ResponseTest.java
@@ -18,21 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Model200Response
*/
-public class Model200ResponseTest {
+class Model200ResponseTest {
private final Model200Response model = new Model200Response();
/**
* Model tests for Model200Response
*/
@Test
- public void testModel200Response() {
+ void testModel200Response() {
// TODO: test Model200Response
}
@@ -40,7 +40,7 @@ public class Model200ResponseTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
@@ -48,7 +48,7 @@ public class Model200ResponseTest {
* Test the property 'propertyClass'
*/
@Test
- public void propertyClassTest() {
+ void propertyClassTest() {
// TODO: test propertyClass
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java
index e63f2ae5e9c..436e4abd59e 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ModelApiResponseTest.java
@@ -18,21 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelApiResponse
*/
-public class ModelApiResponseTest {
+class ModelApiResponseTest {
private final ModelApiResponse model = new ModelApiResponse();
/**
* Model tests for ModelApiResponse
*/
@Test
- public void testModelApiResponse() {
+ void testModelApiResponse() {
// TODO: test ModelApiResponse
}
@@ -40,7 +40,7 @@ public class ModelApiResponseTest {
* Test the property 'code'
*/
@Test
- public void codeTest() {
+ void codeTest() {
// TODO: test code
}
@@ -48,7 +48,7 @@ public class ModelApiResponseTest {
* Test the property 'type'
*/
@Test
- public void typeTest() {
+ void typeTest() {
// TODO: test type
}
@@ -56,7 +56,7 @@ public class ModelApiResponseTest {
* Test the property 'message'
*/
@Test
- public void messageTest() {
+ void messageTest() {
// TODO: test message
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ModelFileTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ModelFileTest.java
index 264249edc1c..f128d7b9ac2 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ModelFileTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ModelFileTest.java
@@ -18,21 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelFile
*/
-public class ModelFileTest {
+class ModelFileTest {
private final ModelFile model = new ModelFile();
/**
* Model tests for ModelFile
*/
@Test
- public void testModelFile() {
+ void testModelFile() {
// TODO: test ModelFile
}
@@ -40,7 +40,7 @@ public class ModelFileTest {
* Test the property 'sourceURI'
*/
@Test
- public void sourceURITest() {
+ void sourceURITest() {
// TODO: test sourceURI
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ModelListTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ModelListTest.java
index 81fd2dcc6a6..92273f48d23 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ModelListTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ModelListTest.java
@@ -18,21 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelList
*/
-public class ModelListTest {
+class ModelListTest {
private final ModelList model = new ModelList();
/**
* Model tests for ModelList
*/
@Test
- public void testModelList() {
+ void testModelList() {
// TODO: test ModelList
}
@@ -40,7 +40,7 @@ public class ModelListTest {
* Test the property '_123list'
*/
@Test
- public void _123listTest() {
+ void _123listTest() {
// TODO: test _123list
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ModelReturnTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ModelReturnTest.java
index 5840d4f8f0c..1c5337654cd 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ModelReturnTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ModelReturnTest.java
@@ -18,21 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ModelReturn
*/
-public class ModelReturnTest {
+class ModelReturnTest {
private final ModelReturn model = new ModelReturn();
/**
* Model tests for ModelReturn
*/
@Test
- public void testModelReturn() {
+ void testModelReturn() {
// TODO: test ModelReturn
}
@@ -40,7 +40,7 @@ public class ModelReturnTest {
* Test the property '_return'
*/
@Test
- public void _returnTest() {
+ void _returnTest() {
// TODO: test _return
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/NameTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/NameTest.java
index 9280c171539..1a6aa18fa20 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/NameTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/NameTest.java
@@ -18,21 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Name
*/
-public class NameTest {
+class NameTest {
private final Name model = new Name();
/**
* Model tests for Name
*/
@Test
- public void testName() {
+ void testName() {
// TODO: test Name
}
@@ -40,7 +40,7 @@ public class NameTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
@@ -48,7 +48,7 @@ public class NameTest {
* Test the property 'snakeCase'
*/
@Test
- public void snakeCaseTest() {
+ void snakeCaseTest() {
// TODO: test snakeCase
}
@@ -56,7 +56,7 @@ public class NameTest {
* Test the property 'property'
*/
@Test
- public void propertyTest() {
+ void propertyTest() {
// TODO: test property
}
@@ -64,7 +64,7 @@ public class NameTest {
* Test the property '_123number'
*/
@Test
- public void _123numberTest() {
+ void _123numberTest() {
// TODO: test _123number
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/NullableClassTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/NullableClassTest.java
index c79c6366f83..d960ef76e5c 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/NullableClassTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/NullableClassTest.java
@@ -30,21 +30,21 @@ import org.openapitools.jackson.nullable.JsonNullable;
import com.fasterxml.jackson.annotation.JsonIgnore;
import org.openapitools.jackson.nullable.JsonNullable;
import java.util.NoSuchElementException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for NullableClass
*/
-public class NullableClassTest {
+class NullableClassTest {
private final NullableClass model = new NullableClass();
/**
* Model tests for NullableClass
*/
@Test
- public void testNullableClass() {
+ void testNullableClass() {
// TODO: test NullableClass
}
@@ -52,7 +52,7 @@ public class NullableClassTest {
* Test the property 'integerProp'
*/
@Test
- public void integerPropTest() {
+ void integerPropTest() {
// TODO: test integerProp
}
@@ -60,7 +60,7 @@ public class NullableClassTest {
* Test the property 'numberProp'
*/
@Test
- public void numberPropTest() {
+ void numberPropTest() {
// TODO: test numberProp
}
@@ -68,7 +68,7 @@ public class NullableClassTest {
* Test the property 'booleanProp'
*/
@Test
- public void booleanPropTest() {
+ void booleanPropTest() {
// TODO: test booleanProp
}
@@ -76,7 +76,7 @@ public class NullableClassTest {
* Test the property 'stringProp'
*/
@Test
- public void stringPropTest() {
+ void stringPropTest() {
// TODO: test stringProp
}
@@ -84,7 +84,7 @@ public class NullableClassTest {
* Test the property 'dateProp'
*/
@Test
- public void datePropTest() {
+ void datePropTest() {
// TODO: test dateProp
}
@@ -92,7 +92,7 @@ public class NullableClassTest {
* Test the property 'datetimeProp'
*/
@Test
- public void datetimePropTest() {
+ void datetimePropTest() {
// TODO: test datetimeProp
}
@@ -100,7 +100,7 @@ public class NullableClassTest {
* Test the property 'arrayNullableProp'
*/
@Test
- public void arrayNullablePropTest() {
+ void arrayNullablePropTest() {
// TODO: test arrayNullableProp
}
@@ -108,7 +108,7 @@ public class NullableClassTest {
* Test the property 'arrayAndItemsNullableProp'
*/
@Test
- public void arrayAndItemsNullablePropTest() {
+ void arrayAndItemsNullablePropTest() {
// TODO: test arrayAndItemsNullableProp
}
@@ -116,7 +116,7 @@ public class NullableClassTest {
* Test the property 'arrayItemsNullable'
*/
@Test
- public void arrayItemsNullableTest() {
+ void arrayItemsNullableTest() {
// TODO: test arrayItemsNullable
}
@@ -124,7 +124,7 @@ public class NullableClassTest {
* Test the property 'objectNullableProp'
*/
@Test
- public void objectNullablePropTest() {
+ void objectNullablePropTest() {
// TODO: test objectNullableProp
}
@@ -132,7 +132,7 @@ public class NullableClassTest {
* Test the property 'objectAndItemsNullableProp'
*/
@Test
- public void objectAndItemsNullablePropTest() {
+ void objectAndItemsNullablePropTest() {
// TODO: test objectAndItemsNullableProp
}
@@ -140,7 +140,7 @@ public class NullableClassTest {
* Test the property 'objectItemsNullable'
*/
@Test
- public void objectItemsNullableTest() {
+ void objectItemsNullableTest() {
// TODO: test objectItemsNullable
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/NumberOnlyTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/NumberOnlyTest.java
index 63b5bc0440e..8623386a5e9 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/NumberOnlyTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/NumberOnlyTest.java
@@ -19,21 +19,21 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.math.BigDecimal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for NumberOnly
*/
-public class NumberOnlyTest {
+class NumberOnlyTest {
private final NumberOnly model = new NumberOnly();
/**
* Model tests for NumberOnly
*/
@Test
- public void testNumberOnly() {
+ void testNumberOnly() {
// TODO: test NumberOnly
}
@@ -41,7 +41,7 @@ public class NumberOnlyTest {
* Test the property 'justNumber'
*/
@Test
- public void justNumberTest() {
+ void justNumberTest() {
// TODO: test justNumber
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ObjectWithDeprecatedFieldsTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ObjectWithDeprecatedFieldsTest.java
index 4203b62f784..aa755cf8cb4 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ObjectWithDeprecatedFieldsTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ObjectWithDeprecatedFieldsTest.java
@@ -23,21 +23,21 @@ import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.openapitools.client.model.DeprecatedObject;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ObjectWithDeprecatedFields
*/
-public class ObjectWithDeprecatedFieldsTest {
+class ObjectWithDeprecatedFieldsTest {
private final ObjectWithDeprecatedFields model = new ObjectWithDeprecatedFields();
/**
* Model tests for ObjectWithDeprecatedFields
*/
@Test
- public void testObjectWithDeprecatedFields() {
+ void testObjectWithDeprecatedFields() {
// TODO: test ObjectWithDeprecatedFields
}
@@ -45,7 +45,7 @@ public class ObjectWithDeprecatedFieldsTest {
* Test the property 'uuid'
*/
@Test
- public void uuidTest() {
+ void uuidTest() {
// TODO: test uuid
}
@@ -53,7 +53,7 @@ public class ObjectWithDeprecatedFieldsTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -61,7 +61,7 @@ public class ObjectWithDeprecatedFieldsTest {
* Test the property 'deprecatedRef'
*/
@Test
- public void deprecatedRefTest() {
+ void deprecatedRefTest() {
// TODO: test deprecatedRef
}
@@ -69,7 +69,7 @@ public class ObjectWithDeprecatedFieldsTest {
* Test the property 'bars'
*/
@Test
- public void barsTest() {
+ void barsTest() {
// TODO: test bars
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OrderTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OrderTest.java
index e0fbb529af6..670c2535646 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OrderTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OrderTest.java
@@ -19,21 +19,21 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.time.OffsetDateTime;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Order
*/
-public class OrderTest {
+class OrderTest {
private final Order model = new Order();
/**
* Model tests for Order
*/
@Test
- public void testOrder() {
+ void testOrder() {
// TODO: test Order
}
@@ -41,7 +41,7 @@ public class OrderTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -49,7 +49,7 @@ public class OrderTest {
* Test the property 'petId'
*/
@Test
- public void petIdTest() {
+ void petIdTest() {
// TODO: test petId
}
@@ -57,7 +57,7 @@ public class OrderTest {
* Test the property 'quantity'
*/
@Test
- public void quantityTest() {
+ void quantityTest() {
// TODO: test quantity
}
@@ -65,7 +65,7 @@ public class OrderTest {
* Test the property 'shipDate'
*/
@Test
- public void shipDateTest() {
+ void shipDateTest() {
// TODO: test shipDate
}
@@ -73,7 +73,7 @@ public class OrderTest {
* Test the property 'status'
*/
@Test
- public void statusTest() {
+ void statusTest() {
// TODO: test status
}
@@ -81,7 +81,7 @@ public class OrderTest {
* Test the property 'complete'
*/
@Test
- public void completeTest() {
+ void completeTest() {
// TODO: test complete
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OuterCompositeTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OuterCompositeTest.java
index 840cf65c8d0..870a977da94 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OuterCompositeTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OuterCompositeTest.java
@@ -19,21 +19,21 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.math.BigDecimal;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for OuterComposite
*/
-public class OuterCompositeTest {
+class OuterCompositeTest {
private final OuterComposite model = new OuterComposite();
/**
* Model tests for OuterComposite
*/
@Test
- public void testOuterComposite() {
+ void testOuterComposite() {
// TODO: test OuterComposite
}
@@ -41,7 +41,7 @@ public class OuterCompositeTest {
* Test the property 'myNumber'
*/
@Test
- public void myNumberTest() {
+ void myNumberTest() {
// TODO: test myNumber
}
@@ -49,7 +49,7 @@ public class OuterCompositeTest {
* Test the property 'myString'
*/
@Test
- public void myStringTest() {
+ void myStringTest() {
// TODO: test myString
}
@@ -57,7 +57,7 @@ public class OuterCompositeTest {
* Test the property 'myBoolean'
*/
@Test
- public void myBooleanTest() {
+ void myBooleanTest() {
// TODO: test myBoolean
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OuterEnumDefaultValueTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OuterEnumDefaultValueTest.java
index 5b9bae28ec6..d818b23c7d5 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OuterEnumDefaultValueTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OuterEnumDefaultValueTest.java
@@ -13,19 +13,19 @@
package org.openapitools.client.model;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for OuterEnumDefaultValue
*/
-public class OuterEnumDefaultValueTest {
+class OuterEnumDefaultValueTest {
/**
* Model tests for OuterEnumDefaultValue
*/
@Test
- public void testOuterEnumDefaultValue() {
+ void testOuterEnumDefaultValue() {
// TODO: test OuterEnumDefaultValue
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OuterEnumIntegerDefaultValueTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OuterEnumIntegerDefaultValueTest.java
index 731acbf905f..1d7b3338bca 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OuterEnumIntegerDefaultValueTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OuterEnumIntegerDefaultValueTest.java
@@ -13,19 +13,19 @@
package org.openapitools.client.model;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for OuterEnumIntegerDefaultValue
*/
-public class OuterEnumIntegerDefaultValueTest {
+class OuterEnumIntegerDefaultValueTest {
/**
* Model tests for OuterEnumIntegerDefaultValue
*/
@Test
- public void testOuterEnumIntegerDefaultValue() {
+ void testOuterEnumIntegerDefaultValue() {
// TODO: test OuterEnumIntegerDefaultValue
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OuterEnumIntegerTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OuterEnumIntegerTest.java
index 234945cec0f..cacda46a76f 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OuterEnumIntegerTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OuterEnumIntegerTest.java
@@ -13,19 +13,19 @@
package org.openapitools.client.model;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for OuterEnumInteger
*/
-public class OuterEnumIntegerTest {
+class OuterEnumIntegerTest {
/**
* Model tests for OuterEnumInteger
*/
@Test
- public void testOuterEnumInteger() {
+ void testOuterEnumInteger() {
// TODO: test OuterEnumInteger
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OuterEnumTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OuterEnumTest.java
index b312b11a09e..0333ee657a0 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OuterEnumTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OuterEnumTest.java
@@ -13,19 +13,19 @@
package org.openapitools.client.model;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for OuterEnum
*/
-public class OuterEnumTest {
+class OuterEnumTest {
/**
* Model tests for OuterEnum
*/
@Test
- public void testOuterEnum() {
+ void testOuterEnum() {
// TODO: test OuterEnum
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OuterObjectWithEnumPropertyTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OuterObjectWithEnumPropertyTest.java
index 964d1281b21..ac7169192a5 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OuterObjectWithEnumPropertyTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/OuterObjectWithEnumPropertyTest.java
@@ -19,21 +19,21 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import org.openapitools.client.model.OuterEnumInteger;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for OuterObjectWithEnumProperty
*/
-public class OuterObjectWithEnumPropertyTest {
+class OuterObjectWithEnumPropertyTest {
private final OuterObjectWithEnumProperty model = new OuterObjectWithEnumProperty();
/**
* Model tests for OuterObjectWithEnumProperty
*/
@Test
- public void testOuterObjectWithEnumProperty() {
+ void testOuterObjectWithEnumProperty() {
// TODO: test OuterObjectWithEnumProperty
}
@@ -41,7 +41,7 @@ public class OuterObjectWithEnumPropertyTest {
* Test the property 'value'
*/
@Test
- public void valueTest() {
+ void valueTest() {
// TODO: test value
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ParentWithNullableTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ParentWithNullableTest.java
index bdd46008b13..2e4de561806 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ParentWithNullableTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ParentWithNullableTest.java
@@ -25,21 +25,21 @@ import org.openapitools.jackson.nullable.JsonNullable;
import com.fasterxml.jackson.annotation.JsonIgnore;
import org.openapitools.jackson.nullable.JsonNullable;
import java.util.NoSuchElementException;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ParentWithNullable
*/
-public class ParentWithNullableTest {
+class ParentWithNullableTest {
private final ParentWithNullable model = new ParentWithNullable();
/**
* Model tests for ParentWithNullable
*/
@Test
- public void testParentWithNullable() {
+ void testParentWithNullable() {
// TODO: test ParentWithNullable
}
@@ -47,7 +47,7 @@ public class ParentWithNullableTest {
* Test the property 'type'
*/
@Test
- public void typeTest() {
+ void typeTest() {
// TODO: test type
}
@@ -55,7 +55,7 @@ public class ParentWithNullableTest {
* Test the property 'nullableProperty'
*/
@Test
- public void nullablePropertyTest() {
+ void nullablePropertyTest() {
// TODO: test nullableProperty
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/PetTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/PetTest.java
index ca23198fbf1..2e4303f1e4b 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/PetTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/PetTest.java
@@ -26,21 +26,21 @@ import java.util.List;
import java.util.Set;
import org.openapitools.client.model.Category;
import org.openapitools.client.model.Tag;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Pet
*/
-public class PetTest {
+class PetTest {
private final Pet model = new Pet();
/**
* Model tests for Pet
*/
@Test
- public void testPet() {
+ void testPet() {
// TODO: test Pet
}
@@ -48,7 +48,7 @@ public class PetTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -56,7 +56,7 @@ public class PetTest {
* Test the property 'category'
*/
@Test
- public void categoryTest() {
+ void categoryTest() {
// TODO: test category
}
@@ -64,7 +64,7 @@ public class PetTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
@@ -72,7 +72,7 @@ public class PetTest {
* Test the property 'photoUrls'
*/
@Test
- public void photoUrlsTest() {
+ void photoUrlsTest() {
// TODO: test photoUrls
}
@@ -80,7 +80,7 @@ public class PetTest {
* Test the property 'tags'
*/
@Test
- public void tagsTest() {
+ void tagsTest() {
// TODO: test tags
}
@@ -88,7 +88,7 @@ public class PetTest {
* Test the property 'status'
*/
@Test
- public void statusTest() {
+ void statusTest() {
// TODO: test status
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java
index b356d6993c5..c56da4290fa 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/ReadOnlyFirstTest.java
@@ -18,21 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for ReadOnlyFirst
*/
-public class ReadOnlyFirstTest {
+class ReadOnlyFirstTest {
private final ReadOnlyFirst model = new ReadOnlyFirst();
/**
* Model tests for ReadOnlyFirst
*/
@Test
- public void testReadOnlyFirst() {
+ void testReadOnlyFirst() {
// TODO: test ReadOnlyFirst
}
@@ -40,7 +40,7 @@ public class ReadOnlyFirstTest {
* Test the property 'bar'
*/
@Test
- public void barTest() {
+ void barTest() {
// TODO: test bar
}
@@ -48,7 +48,7 @@ public class ReadOnlyFirstTest {
* Test the property 'baz'
*/
@Test
- public void bazTest() {
+ void bazTest() {
// TODO: test baz
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/SingleRefTypeTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/SingleRefTypeTest.java
index 920d02c930c..476e4ca161b 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/SingleRefTypeTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/SingleRefTypeTest.java
@@ -13,19 +13,19 @@
package org.openapitools.client.model;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for SingleRefType
*/
-public class SingleRefTypeTest {
+class SingleRefTypeTest {
/**
* Model tests for SingleRefType
*/
@Test
- public void testSingleRefType() {
+ void testSingleRefType() {
// TODO: test SingleRefType
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java
index 8eb0b1bd269..9501cf722d6 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/SpecialModelNameTest.java
@@ -18,21 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for SpecialModelName
*/
-public class SpecialModelNameTest {
+class SpecialModelNameTest {
private final SpecialModelName model = new SpecialModelName();
/**
* Model tests for SpecialModelName
*/
@Test
- public void testSpecialModelName() {
+ void testSpecialModelName() {
// TODO: test SpecialModelName
}
@@ -40,7 +40,7 @@ public class SpecialModelNameTest {
* Test the property '$specialPropertyName'
*/
@Test
- public void $specialPropertyNameTest() {
+ void $specialPropertyNameTest() {
// TODO: test $specialPropertyName
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/TagTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/TagTest.java
index 6dc0868167c..dc9cf9742ef 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/TagTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/TagTest.java
@@ -18,21 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for Tag
*/
-public class TagTest {
+class TagTest {
private final Tag model = new Tag();
/**
* Model tests for Tag
*/
@Test
- public void testTag() {
+ void testTag() {
// TODO: test Tag
}
@@ -40,7 +40,7 @@ public class TagTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -48,7 +48,7 @@ public class TagTest {
* Test the property 'name'
*/
@Test
- public void nameTest() {
+ void nameTest() {
// TODO: test name
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequestTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequestTest.java
index 819a1e7fa9d..edb986ca550 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequestTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/TestInlineFreeformAdditionalPropertiesRequestTest.java
@@ -20,21 +20,21 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.HashMap;
import java.util.Map;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for TestInlineFreeformAdditionalPropertiesRequest
*/
-public class TestInlineFreeformAdditionalPropertiesRequestTest {
+class TestInlineFreeformAdditionalPropertiesRequestTest {
private final TestInlineFreeformAdditionalPropertiesRequest model = new TestInlineFreeformAdditionalPropertiesRequest();
/**
* Model tests for TestInlineFreeformAdditionalPropertiesRequest
*/
@Test
- public void testTestInlineFreeformAdditionalPropertiesRequest() {
+ void testTestInlineFreeformAdditionalPropertiesRequest() {
// TODO: test TestInlineFreeformAdditionalPropertiesRequest
}
@@ -42,7 +42,7 @@ public class TestInlineFreeformAdditionalPropertiesRequestTest {
* Test the property 'someProperty'
*/
@Test
- public void somePropertyTest() {
+ void somePropertyTest() {
// TODO: test someProperty
}
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/UserTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/UserTest.java
index b029d279409..69d274133b9 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/UserTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/model/UserTest.java
@@ -18,21 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
-import org.junit.Assert;
-import org.junit.Ignore;
-import org.junit.Test;
+import org.junit.jupiter.api.Assertions;
+import org.junit.jupiter.api.Disabled;
+import org.junit.jupiter.api.Test;
/**
* Model tests for User
*/
-public class UserTest {
+class UserTest {
private final User model = new User();
/**
* Model tests for User
*/
@Test
- public void testUser() {
+ void testUser() {
// TODO: test User
}
@@ -40,7 +40,7 @@ public class UserTest {
* Test the property 'id'
*/
@Test
- public void idTest() {
+ void idTest() {
// TODO: test id
}
@@ -48,7 +48,7 @@ public class UserTest {
* Test the property 'username'
*/
@Test
- public void usernameTest() {
+ void usernameTest() {
// TODO: test username
}
@@ -56,7 +56,7 @@ public class UserTest {
* Test the property 'firstName'
*/
@Test
- public void firstNameTest() {
+ void firstNameTest() {
// TODO: test firstName
}
@@ -64,7 +64,7 @@ public class UserTest {
* Test the property 'lastName'
*/
@Test
- public void lastNameTest() {
+ void lastNameTest() {
// TODO: test lastName
}
@@ -72,7 +72,7 @@ public class UserTest {
* Test the property 'email'
*/
@Test
- public void emailTest() {
+ void emailTest() {
// TODO: test email
}
@@ -80,7 +80,7 @@ public class UserTest {
* Test the property 'password'
*/
@Test
- public void passwordTest() {
+ void passwordTest() {
// TODO: test password
}
@@ -88,7 +88,7 @@ public class UserTest {
* Test the property 'phone'
*/
@Test
- public void phoneTest() {
+ void phoneTest() {
// TODO: test phone
}
@@ -96,7 +96,7 @@ public class UserTest {
* Test the property 'userStatus'
*/
@Test
- public void userStatusTest() {
+ void userStatusTest() {
// TODO: test userStatus
}