[Java][webclient] update junit to 5.x (#18741)

* webclient: update junit to 5.x

* update samples

* update samples

* update samples

* update samples

* update samples

* clean up

* update samples

* update pom plugin version

* update tests
This commit is contained in:
William Cheng 2024-05-23 16:27:06 +08:00 committed by GitHub
parent 63d1564637
commit 00c1ceffcd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
190 changed files with 2074 additions and 1808 deletions

View File

@ -4,8 +4,9 @@ package {{package}};
{{#imports}}import {{import}}; {{#imports}}import {{import}};
{{/imports}} {{/imports}}
import org.junit.Test; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
@ -21,7 +22,7 @@ import jakarta.validation.Valid;
/** /**
* API tests for {{classname}} * API tests for {{classname}}
*/ */
@Ignore @Disabled
public class {{classname}}Test { public class {{classname}}Test {
private final {{classname}} api = new {{classname}}(); private final {{classname}} api = new {{classname}}();
@ -34,10 +35,11 @@ public class {{classname}}Test {
*/ */
@Test @Test
public void {{operationId}}Test() { public void {{operationId}}Test() {
// uncomment below to test the function
{{#allParams}} {{#allParams}}
{{#isFile}}{{#useAbstractionForFiles}}{{#collectionFormat}}java.util.Collection<org.springframework.core.io.AbstractResource>{{/collectionFormat}}{{^collectionFormat}}org.springframework.core.io.AbstractResource{{/collectionFormat}}{{/useAbstractionForFiles}}{{^useAbstractionForFiles}}{{{dataType}}}{{/useAbstractionForFiles}}{{/isFile}}{{^isFile}}{{{dataType}}}{{/isFile}} {{paramName}} = null; //{{#isFile}}{{#useAbstractionForFiles}}{{#collectionFormat}}java.util.Collection<org.springframework.core.io.AbstractResource>{{/collectionFormat}}{{^collectionFormat}}org.springframework.core.io.AbstractResource{{/collectionFormat}}{{/useAbstractionForFiles}}{{^useAbstractionForFiles}}{{{dataType}}}{{/useAbstractionForFiles}}{{/isFile}}{{^isFile}}{{{dataType}}}{{/isFile}} {{paramName}} = null;
{{/allParams}} {{/allParams}}
{{#returnType}}{{#isResponseFile}}{{#useAbstractionForFiles}}org.springframework.core.io.Resource{{/useAbstractionForFiles}}{{^useAbstractionForFiles}}{{{.}}}{{/useAbstractionForFiles}}{{/isResponseFile}}{{^isResponseFile}}{{{.}}}{{/isResponseFile}} response = {{/returnType}}api.{{operationId}}({{#allParams}}{{paramName}}{{^-last}}, {{/-last}}{{/allParams}}){{^vendorExtensions.x-webclient-blocking}}{{#vendorExtensions.x-webclient-return-except-list-of-string}}{{#uniqueItems}}.collect(Collectors.toSet()){{/uniqueItems}}{{^uniqueItems}}.collectList(){{/uniqueItems}}.block(){{/vendorExtensions.x-webclient-return-except-list-of-string}}{{^vendorExtensions.x-webclient-return-except-list-of-string}}.block(){{/vendorExtensions.x-webclient-return-except-list-of-string}}{{/vendorExtensions.x-webclient-blocking}}; //{{#returnType}}{{#isResponseFile}}{{#useAbstractionForFiles}}org.springframework.core.io.Resource{{/useAbstractionForFiles}}{{^useAbstractionForFiles}}{{{.}}}{{/useAbstractionForFiles}}{{/isResponseFile}}{{^isResponseFile}}{{{.}}}{{/isResponseFile}} response = {{/returnType}}api.{{operationId}}({{#allParams}}{{paramName}}{{^-last}}, {{/-last}}{{/allParams}}){{^vendorExtensions.x-webclient-blocking}}{{#vendorExtensions.x-webclient-return-except-list-of-string}}{{#uniqueItems}}.collect(Collectors.toSet()){{/uniqueItems}}{{^uniqueItems}}.collectList(){{/uniqueItems}}.block(){{/vendorExtensions.x-webclient-return-except-list-of-string}}{{^vendorExtensions.x-webclient-return-except-list-of-string}}.block(){{/vendorExtensions.x-webclient-return-except-list-of-string}}{{/vendorExtensions.x-webclient-blocking}};
// TODO: test validations // TODO: test validations
} }

View File

@ -150,7 +150,7 @@ ext {
{{#joda}} {{#joda}}
jodatime_version = "2.9.9" jodatime_version = "2.9.9"
{{/joda}} {{/joda}}
junit_version = "4.13.2" junit_version = "5.10.2"
} }
dependencies { dependencies {
@ -176,5 +176,5 @@ dependencies {
{{/joda}} {{/joda}}
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version" implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version"
implementation "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version" implementation "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version"
testImplementation "junit:junit:$junit_version" testImplementation "org.junit.jupiter:junit-jupiter-api:$junit_version"
} }

View File

@ -43,7 +43,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version> <version>3.13.0</version>
<configuration> <configuration>
{{#useJakartaEe}} {{#useJakartaEe}}
<source>17</source> <source>17</source>
@ -58,7 +58,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId> <artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version> <version>3.3.1</version>
<executions> <executions>
<execution> <execution>
<id>attach-sources</id> <id>attach-sources</id>
@ -153,8 +153,8 @@
<!-- test dependencies --> <!-- test dependencies -->
<dependency> <dependency>
<groupId>junit</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>junit</artifactId> <artifactId>junit-jupiter-api</artifactId>
<version>${junit-version}</version> <version>${junit-version}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
@ -184,7 +184,7 @@
<reactor-version>3.4.34</reactor-version> <reactor-version>3.4.34</reactor-version>
<reactor-netty-version>1.0.39</reactor-netty-version> <reactor-netty-version>1.0.39</reactor-netty-version>
{{/useJakartaEe}} {{/useJakartaEe}}
<junit-version>4.13.2</junit-version> <junit-version>5.10.2</junit-version>
{{#joda}} {{#joda}}
<jodatime-version>2.9.9</jodatime-version> <jodatime-version>2.9.9</jodatime-version>
{{/joda}} {{/joda}}

View File

@ -119,7 +119,7 @@ ext {
jackson_version = "2.13.4" jackson_version = "2.13.4"
jackson_databind_version = "2.13.4.2" jackson_databind_version = "2.13.4.2"
jackson_databind_nullable_version = "0.2.6" jackson_databind_nullable_version = "0.2.6"
junit_version = "4.13.2" junit_version = "5.10.2"
} }
dependencies { dependencies {
@ -134,5 +134,5 @@ dependencies {
implementation "org.openapitools:jackson-databind-nullable:$jackson_databind_nullable_version" implementation "org.openapitools:jackson-databind-nullable:$jackson_databind_nullable_version"
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version" implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version"
implementation "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version" implementation "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version"
testImplementation "junit:junit:$junit_version" testImplementation "org.junit.jupiter:junit-jupiter-api:$junit_version"
} }

View File

@ -36,7 +36,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version> <version>3.13.0</version>
<configuration> <configuration>
<source>1.8</source> <source>1.8</source>
<target>1.8</target> <target>1.8</target>
@ -45,7 +45,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId> <artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version> <version>3.3.1</version>
<executions> <executions>
<execution> <execution>
<id>attach-sources</id> <id>attach-sources</id>
@ -112,8 +112,8 @@
<!-- test dependencies --> <!-- test dependencies -->
<dependency> <dependency>
<groupId>junit</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>junit</artifactId> <artifactId>junit-jupiter-api</artifactId>
<version>${junit-version}</version> <version>${junit-version}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
@ -127,6 +127,6 @@
<jakarta-annotation-version>1.3.5</jakarta-annotation-version> <jakarta-annotation-version>1.3.5</jakarta-annotation-version>
<reactor-version>3.4.34</reactor-version> <reactor-version>3.4.34</reactor-version>
<reactor-netty-version>1.0.39</reactor-netty-version> <reactor-netty-version>1.0.39</reactor-netty-version>
<junit-version>4.13.2</junit-version> <junit-version>5.10.2</junit-version>
</properties> </properties>
</project> </project>

View File

@ -14,8 +14,9 @@
package org.openapitools.client.api; package org.openapitools.client.api;
import java.io.File; import java.io.File;
import org.junit.Test; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
@ -26,7 +27,7 @@ import java.util.stream.Collectors;
/** /**
* API tests for ResourceApi * API tests for ResourceApi
*/ */
@Ignore @Disabled
public class ResourceApiTest { public class ResourceApiTest {
private final ResourceApi api = new ResourceApi(); private final ResourceApi api = new ResourceApi();
@ -39,7 +40,8 @@ public class ResourceApiTest {
*/ */
@Test @Test
public void resourceInResponseTest() { public void resourceInResponseTest() {
org.springframework.core.io.Resource response = api.resourceInResponse().block(); // uncomment below to test the function
//org.springframework.core.io.Resource response = api.resourceInResponse().block();
// TODO: test validations // TODO: test validations
} }

View File

@ -119,7 +119,7 @@ ext {
jackson_version = "2.13.4" jackson_version = "2.13.4"
jackson_databind_version = "2.13.4.2" jackson_databind_version = "2.13.4.2"
jackson_databind_nullable_version = "0.2.6" jackson_databind_nullable_version = "0.2.6"
junit_version = "4.13.2" junit_version = "5.10.2"
} }
dependencies { dependencies {
@ -134,5 +134,5 @@ dependencies {
implementation "org.openapitools:jackson-databind-nullable:$jackson_databind_nullable_version" implementation "org.openapitools:jackson-databind-nullable:$jackson_databind_nullable_version"
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version" implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version"
implementation "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version" implementation "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version"
testImplementation "junit:junit:$junit_version" testImplementation "org.junit.jupiter:junit-jupiter-api:$junit_version"
} }

View File

@ -36,7 +36,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version> <version>3.13.0</version>
<configuration> <configuration>
<source>17</source> <source>17</source>
<target>17</target> <target>17</target>
@ -45,7 +45,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId> <artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version> <version>3.3.1</version>
<executions> <executions>
<execution> <execution>
<id>attach-sources</id> <id>attach-sources</id>
@ -112,8 +112,8 @@
<!-- test dependencies --> <!-- test dependencies -->
<dependency> <dependency>
<groupId>junit</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>junit</artifactId> <artifactId>junit-jupiter-api</artifactId>
<version>${junit-version}</version> <version>${junit-version}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
@ -127,6 +127,6 @@
<jakarta-annotation-version>2.1.1</jakarta-annotation-version> <jakarta-annotation-version>2.1.1</jakarta-annotation-version>
<reactor-version>3.5.12</reactor-version> <reactor-version>3.5.12</reactor-version>
<reactor-netty-version>1.1.13</reactor-netty-version> <reactor-netty-version>1.1.13</reactor-netty-version>
<junit-version>4.13.2</junit-version> <junit-version>5.10.2</junit-version>
</properties> </properties>
</project> </project>

View File

@ -14,8 +14,9 @@
package org.openapitools.client.api; package org.openapitools.client.api;
import org.openapitools.client.model.Client; import org.openapitools.client.model.Client;
import org.junit.Test; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
@ -26,7 +27,7 @@ import java.util.stream.Collectors;
/** /**
* API tests for AnotherFakeApi * API tests for AnotherFakeApi
*/ */
@Ignore @Disabled
public class AnotherFakeApiTest { public class AnotherFakeApiTest {
private final AnotherFakeApi api = new AnotherFakeApi(); private final AnotherFakeApi api = new AnotherFakeApi();
@ -39,8 +40,9 @@ public class AnotherFakeApiTest {
*/ */
@Test @Test
public void call123testSpecialTagsTest() { public void call123testSpecialTagsTest() {
Client client = null; // uncomment below to test the function
Client response = api.call123testSpecialTags(client).block(); //Client client = null;
//Client response = api.call123testSpecialTags(client).block();
// TODO: test validations // TODO: test validations
} }

View File

@ -14,8 +14,9 @@
package org.openapitools.client.api; package org.openapitools.client.api;
import org.openapitools.client.model.FooGetDefaultResponse; import org.openapitools.client.model.FooGetDefaultResponse;
import org.junit.Test; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
@ -26,7 +27,7 @@ import java.util.stream.Collectors;
/** /**
* API tests for DefaultApi * API tests for DefaultApi
*/ */
@Ignore @Disabled
public class DefaultApiTest { public class DefaultApiTest {
private final DefaultApi api = new DefaultApi(); private final DefaultApi api = new DefaultApi();
@ -39,7 +40,8 @@ public class DefaultApiTest {
*/ */
@Test @Test
public void fooGetTest() { public void fooGetTest() {
FooGetDefaultResponse response = api.fooGet().block(); // uncomment below to test the function
//FooGetDefaultResponse response = api.fooGet().block();
// TODO: test validations // TODO: test validations
} }

View File

@ -14,8 +14,10 @@
package org.openapitools.client.api; package org.openapitools.client.api;
import java.math.BigDecimal; import java.math.BigDecimal;
import org.openapitools.client.model.ChildWithNullable;
import org.openapitools.client.model.Client; import org.openapitools.client.model.Client;
import org.openapitools.client.model.EnumClass; import org.openapitools.client.model.EnumClass;
import org.openapitools.client.model.FakeBigDecimalMap200Response;
import java.io.File; import java.io.File;
import org.openapitools.client.model.FileSchemaTestClass; import org.openapitools.client.model.FileSchemaTestClass;
import org.openapitools.client.model.HealthCheckResult; import org.openapitools.client.model.HealthCheckResult;
@ -24,9 +26,11 @@ import java.time.OffsetDateTime;
import org.openapitools.client.model.OuterComposite; import org.openapitools.client.model.OuterComposite;
import org.openapitools.client.model.OuterObjectWithEnumProperty; import org.openapitools.client.model.OuterObjectWithEnumProperty;
import org.openapitools.client.model.Pet; import org.openapitools.client.model.Pet;
import org.openapitools.client.model.TestInlineFreeformAdditionalPropertiesRequest;
import org.openapitools.client.model.User; import org.openapitools.client.model.User;
import org.junit.Test; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
@ -37,12 +41,25 @@ import java.util.stream.Collectors;
/** /**
* API tests for FakeApi * API tests for FakeApi
*/ */
@Ignore @Disabled
public class FakeApiTest { public class FakeApiTest {
private final FakeApi api = new FakeApi(); private final FakeApi api = new FakeApi();
/**
*
*
* for Java apache and Java native, test toUrlQueryString for maps with BegDecimal keys
*/
@Test
public void fakeBigDecimalMapTest() {
// uncomment below to test the function
//FakeBigDecimalMap200Response response = api.fakeBigDecimalMap().block();
// TODO: test validations
}
/** /**
* Health check endpoint * Health check endpoint
* *
@ -50,7 +67,8 @@ public class FakeApiTest {
*/ */
@Test @Test
public void fakeHealthGetTest() { public void fakeHealthGetTest() {
HealthCheckResult response = api.fakeHealthGet().block(); // uncomment below to test the function
//HealthCheckResult response = api.fakeHealthGet().block();
// TODO: test validations // TODO: test validations
} }
@ -62,10 +80,11 @@ public class FakeApiTest {
*/ */
@Test @Test
public void fakeHttpSignatureTestTest() { public void fakeHttpSignatureTestTest() {
Pet pet = null; // uncomment below to test the function
String query1 = null; //Pet pet = null;
String header1 = null; //String query1 = null;
api.fakeHttpSignatureTest(pet, query1, header1).block(); //String header1 = null;
//api.fakeHttpSignatureTest(pet, query1, header1).block();
// TODO: test validations // TODO: test validations
} }
@ -77,8 +96,9 @@ public class FakeApiTest {
*/ */
@Test @Test
public void fakeOuterBooleanSerializeTest() { public void fakeOuterBooleanSerializeTest() {
Boolean body = null; // uncomment below to test the function
Boolean response = api.fakeOuterBooleanSerialize(body).block(); //Boolean body = null;
//Boolean response = api.fakeOuterBooleanSerialize(body).block();
// TODO: test validations // TODO: test validations
} }
@ -90,8 +110,9 @@ public class FakeApiTest {
*/ */
@Test @Test
public void fakeOuterCompositeSerializeTest() { public void fakeOuterCompositeSerializeTest() {
OuterComposite outerComposite = null; // uncomment below to test the function
OuterComposite response = api.fakeOuterCompositeSerialize(outerComposite).block(); //OuterComposite outerComposite = null;
//OuterComposite response = api.fakeOuterCompositeSerialize(outerComposite).block();
// TODO: test validations // TODO: test validations
} }
@ -103,8 +124,9 @@ public class FakeApiTest {
*/ */
@Test @Test
public void fakeOuterNumberSerializeTest() { public void fakeOuterNumberSerializeTest() {
BigDecimal body = null; // uncomment below to test the function
BigDecimal response = api.fakeOuterNumberSerialize(body).block(); //BigDecimal body = null;
//BigDecimal response = api.fakeOuterNumberSerialize(body).block();
// TODO: test validations // TODO: test validations
} }
@ -116,8 +138,9 @@ public class FakeApiTest {
*/ */
@Test @Test
public void fakeOuterStringSerializeTest() { public void fakeOuterStringSerializeTest() {
String body = null; // uncomment below to test the function
String response = api.fakeOuterStringSerialize(body).block(); //String body = null;
//String response = api.fakeOuterStringSerialize(body).block();
// TODO: test validations // TODO: test validations
} }
@ -129,8 +152,23 @@ public class FakeApiTest {
*/ */
@Test @Test
public void fakePropertyEnumIntegerSerializeTest() { public void fakePropertyEnumIntegerSerializeTest() {
OuterObjectWithEnumProperty outerObjectWithEnumProperty = null; // uncomment below to test the function
OuterObjectWithEnumProperty response = api.fakePropertyEnumIntegerSerialize(outerObjectWithEnumProperty).block(); //OuterObjectWithEnumProperty outerObjectWithEnumProperty = null;
//OuterObjectWithEnumProperty response = api.fakePropertyEnumIntegerSerialize(outerObjectWithEnumProperty).block();
// TODO: test validations
}
/**
* test referenced additionalProperties
*
*
*/
@Test
public void testAdditionalPropertiesReferenceTest() {
// uncomment below to test the function
//Map<String, Object> requestBody = null;
//api.testAdditionalPropertiesReference(requestBody).block();
// TODO: test validations // TODO: test validations
} }
@ -142,8 +180,9 @@ public class FakeApiTest {
*/ */
@Test @Test
public void testBodyWithBinaryTest() { public void testBodyWithBinaryTest() {
File body = null; // uncomment below to test the function
api.testBodyWithBinary(body).block(); //File body = null;
//api.testBodyWithBinary(body).block();
// TODO: test validations // TODO: test validations
} }
@ -155,8 +194,9 @@ public class FakeApiTest {
*/ */
@Test @Test
public void testBodyWithFileSchemaTest() { public void testBodyWithFileSchemaTest() {
FileSchemaTestClass fileSchemaTestClass = null; // uncomment below to test the function
api.testBodyWithFileSchema(fileSchemaTestClass).block(); //FileSchemaTestClass fileSchemaTestClass = null;
//api.testBodyWithFileSchema(fileSchemaTestClass).block();
// TODO: test validations // TODO: test validations
} }
@ -168,9 +208,10 @@ public class FakeApiTest {
*/ */
@Test @Test
public void testBodyWithQueryParamsTest() { public void testBodyWithQueryParamsTest() {
String query = null; // uncomment below to test the function
User user = null; //String query = null;
api.testBodyWithQueryParams(query, user).block(); //User user = null;
//api.testBodyWithQueryParams(query, user).block();
// TODO: test validations // TODO: test validations
} }
@ -182,8 +223,9 @@ public class FakeApiTest {
*/ */
@Test @Test
public void testClientModelTest() { public void testClientModelTest() {
Client client = null; // uncomment below to test the function
Client response = api.testClientModel(client).block(); //Client client = null;
//Client response = api.testClientModel(client).block();
// TODO: test validations // TODO: test validations
} }
@ -195,21 +237,22 @@ public class FakeApiTest {
*/ */
@Test @Test
public void testEndpointParametersTest() { public void testEndpointParametersTest() {
BigDecimal number = null; // uncomment below to test the function
Double _double = null; //BigDecimal number = null;
String patternWithoutDelimiter = null; //Double _double = null;
byte[] _byte = null; //String patternWithoutDelimiter = null;
Integer integer = null; //byte[] _byte = null;
Integer int32 = null; //Integer integer = null;
Long int64 = null; //Integer int32 = null;
Float _float = null; //Long int64 = null;
String string = null; //Float _float = null;
File binary = null; //String string = null;
LocalDate date = null; //File binary = null;
OffsetDateTime dateTime = null; //LocalDate date = null;
String password = null; //OffsetDateTime dateTime = null;
String paramCallback = null; //String password = null;
api.testEndpointParameters(number, _double, patternWithoutDelimiter, _byte, integer, int32, int64, _float, string, binary, date, dateTime, password, paramCallback).block(); //String paramCallback = null;
//api.testEndpointParameters(number, _double, patternWithoutDelimiter, _byte, integer, int32, int64, _float, string, binary, date, dateTime, password, paramCallback).block();
// TODO: test validations // TODO: test validations
} }
@ -221,16 +264,17 @@ public class FakeApiTest {
*/ */
@Test @Test
public void testEnumParametersTest() { public void testEnumParametersTest() {
List<String> enumHeaderStringArray = null; // uncomment below to test the function
String enumHeaderString = null; //List<String> enumHeaderStringArray = null;
List<String> enumQueryStringArray = null; //String enumHeaderString = null;
String enumQueryString = null; //List<String> enumQueryStringArray = null;
Integer enumQueryInteger = null; //String enumQueryString = null;
Double enumQueryDouble = null; //Integer enumQueryInteger = null;
List<EnumClass> enumQueryModelArray = null; //Double enumQueryDouble = null;
List<String> enumFormStringArray = null; //List<EnumClass> enumQueryModelArray = null;
String enumFormString = null; //List<String> enumFormStringArray = null;
api.testEnumParameters(enumHeaderStringArray, enumHeaderString, enumQueryStringArray, enumQueryString, enumQueryInteger, enumQueryDouble, enumQueryModelArray, enumFormStringArray, enumFormString).block(); //String enumFormString = null;
//api.testEnumParameters(enumHeaderStringArray, enumHeaderString, enumQueryStringArray, enumQueryString, enumQueryInteger, enumQueryDouble, enumQueryModelArray, enumFormStringArray, enumFormString).block();
// TODO: test validations // TODO: test validations
} }
@ -242,13 +286,14 @@ public class FakeApiTest {
*/ */
@Test @Test
public void testGroupParametersTest() { public void testGroupParametersTest() {
Integer requiredStringGroup = null; // uncomment below to test the function
Boolean requiredBooleanGroup = null; //Integer requiredStringGroup = null;
Long requiredInt64Group = null; //Boolean requiredBooleanGroup = null;
Integer stringGroup = null; //Long requiredInt64Group = null;
Boolean booleanGroup = null; //Integer stringGroup = null;
Long int64Group = null; //Boolean booleanGroup = null;
api.testGroupParameters(requiredStringGroup, requiredBooleanGroup, requiredInt64Group, stringGroup, booleanGroup, int64Group).block(); //Long int64Group = null;
//api.testGroupParameters(requiredStringGroup, requiredBooleanGroup, requiredInt64Group, stringGroup, booleanGroup, int64Group).block();
// TODO: test validations // TODO: test validations
} }
@ -260,8 +305,23 @@ public class FakeApiTest {
*/ */
@Test @Test
public void testInlineAdditionalPropertiesTest() { public void testInlineAdditionalPropertiesTest() {
Map<String, String> requestBody = null; // uncomment below to test the function
api.testInlineAdditionalProperties(requestBody).block(); //Map<String, String> requestBody = null;
//api.testInlineAdditionalProperties(requestBody).block();
// TODO: test validations
}
/**
* test inline free-form additionalProperties
*
*
*/
@Test
public void testInlineFreeformAdditionalPropertiesTest() {
// uncomment below to test the function
//TestInlineFreeformAdditionalPropertiesRequest testInlineFreeformAdditionalPropertiesRequest = null;
//api.testInlineFreeformAdditionalProperties(testInlineFreeformAdditionalPropertiesRequest).block();
// TODO: test validations // TODO: test validations
} }
@ -273,9 +333,24 @@ public class FakeApiTest {
*/ */
@Test @Test
public void testJsonFormDataTest() { public void testJsonFormDataTest() {
String param = null; // uncomment below to test the function
String param2 = null; //String param = null;
api.testJsonFormData(param, param2).block(); //String param2 = null;
//api.testJsonFormData(param, param2).block();
// TODO: test validations
}
/**
* test nullable parent property
*
*
*/
@Test
public void testNullableTest() {
// uncomment below to test the function
//ChildWithNullable childWithNullable = null;
//api.testNullable(childWithNullable).block();
// TODO: test validations // TODO: test validations
} }
@ -287,14 +362,29 @@ public class FakeApiTest {
*/ */
@Test @Test
public void testQueryParameterCollectionFormatTest() { public void testQueryParameterCollectionFormatTest() {
List<String> pipe = null; // uncomment below to test the function
List<String> ioutil = null; //List<String> pipe = null;
List<String> http = null; //List<String> ioutil = null;
List<String> url = null; //List<String> http = null;
List<String> context = null; //List<String> url = null;
String allowEmpty = null; //List<String> context = null;
Map<String, String> language = null; //String allowEmpty = null;
api.testQueryParameterCollectionFormat(pipe, ioutil, http, url, context, allowEmpty, language).block(); //Map<String, String> language = null;
//api.testQueryParameterCollectionFormat(pipe, ioutil, http, url, context, allowEmpty, language).block();
// TODO: test validations
}
/**
* test referenced string map
*
*
*/
@Test
public void testStringMapReferenceTest() {
// uncomment below to test the function
//Map<String, String> requestBody = null;
//api.testStringMapReference(requestBody).block();
// TODO: test validations // TODO: test validations
} }

View File

@ -14,8 +14,9 @@
package org.openapitools.client.api; package org.openapitools.client.api;
import org.openapitools.client.model.Client; import org.openapitools.client.model.Client;
import org.junit.Test; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
@ -26,7 +27,7 @@ import java.util.stream.Collectors;
/** /**
* API tests for FakeClassnameTags123Api * API tests for FakeClassnameTags123Api
*/ */
@Ignore @Disabled
public class FakeClassnameTags123ApiTest { public class FakeClassnameTags123ApiTest {
private final FakeClassnameTags123Api api = new FakeClassnameTags123Api(); private final FakeClassnameTags123Api api = new FakeClassnameTags123Api();
@ -39,8 +40,9 @@ public class FakeClassnameTags123ApiTest {
*/ */
@Test @Test
public void testClassnameTest() { public void testClassnameTest() {
Client client = null; // uncomment below to test the function
Client response = api.testClassname(client).block(); //Client client = null;
//Client response = api.testClassname(client).block();
// TODO: test validations // TODO: test validations
} }

View File

@ -17,8 +17,9 @@ import java.io.File;
import org.openapitools.client.model.ModelApiResponse; import org.openapitools.client.model.ModelApiResponse;
import org.openapitools.client.model.Pet; import org.openapitools.client.model.Pet;
import java.util.Set; import java.util.Set;
import org.junit.Test; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
@ -29,7 +30,7 @@ import java.util.stream.Collectors;
/** /**
* API tests for PetApi * API tests for PetApi
*/ */
@Ignore @Disabled
public class PetApiTest { public class PetApiTest {
private final PetApi api = new PetApi(); private final PetApi api = new PetApi();
@ -42,8 +43,9 @@ public class PetApiTest {
*/ */
@Test @Test
public void addPetTest() { public void addPetTest() {
Pet pet = null; // uncomment below to test the function
api.addPet(pet).block(); //Pet pet = null;
//api.addPet(pet).block();
// TODO: test validations // TODO: test validations
} }
@ -55,9 +57,10 @@ public class PetApiTest {
*/ */
@Test @Test
public void deletePetTest() { public void deletePetTest() {
Long petId = null; // uncomment below to test the function
String apiKey = null; //Long petId = null;
api.deletePet(petId, apiKey).block(); //String apiKey = null;
//api.deletePet(petId, apiKey).block();
// TODO: test validations // TODO: test validations
} }
@ -69,8 +72,9 @@ public class PetApiTest {
*/ */
@Test @Test
public void findPetsByStatusTest() { public void findPetsByStatusTest() {
List<String> status = null; // uncomment below to test the function
List<Pet> response = api.findPetsByStatus(status); //List<String> status = null;
//List<Pet> response = api.findPetsByStatus(status);
// TODO: test validations // TODO: test validations
} }
@ -82,8 +86,9 @@ public class PetApiTest {
*/ */
@Test @Test
public void findPetsByTagsTest() { public void findPetsByTagsTest() {
Set<String> tags = null; // uncomment below to test the function
Set<Pet> response = api.findPetsByTags(tags); //Set<String> tags = null;
//Set<Pet> response = api.findPetsByTags(tags);
// TODO: test validations // TODO: test validations
} }
@ -95,8 +100,9 @@ public class PetApiTest {
*/ */
@Test @Test
public void getPetByIdTest() { public void getPetByIdTest() {
Long petId = null; // uncomment below to test the function
Pet response = api.getPetById(petId); //Long petId = null;
//Pet response = api.getPetById(petId);
// TODO: test validations // TODO: test validations
} }
@ -108,8 +114,9 @@ public class PetApiTest {
*/ */
@Test @Test
public void updatePetTest() { public void updatePetTest() {
Pet pet = null; // uncomment below to test the function
api.updatePet(pet); //Pet pet = null;
//api.updatePet(pet);
// TODO: test validations // TODO: test validations
} }
@ -121,10 +128,11 @@ public class PetApiTest {
*/ */
@Test @Test
public void updatePetWithFormTest() { public void updatePetWithFormTest() {
Long petId = null; // uncomment below to test the function
String name = null; //Long petId = null;
String status = null; //String name = null;
api.updatePetWithForm(petId, name, status).block(); //String status = null;
//api.updatePetWithForm(petId, name, status).block();
// TODO: test validations // TODO: test validations
} }
@ -136,10 +144,11 @@ public class PetApiTest {
*/ */
@Test @Test
public void uploadFileTest() { public void uploadFileTest() {
Long petId = null; // uncomment below to test the function
String additionalMetadata = null; //Long petId = null;
File _file = null; //String additionalMetadata = null;
ModelApiResponse response = api.uploadFile(petId, additionalMetadata, _file).block(); //File _file = null;
//ModelApiResponse response = api.uploadFile(petId, additionalMetadata, _file).block();
// TODO: test validations // TODO: test validations
} }
@ -151,10 +160,11 @@ public class PetApiTest {
*/ */
@Test @Test
public void uploadFileWithRequiredFileTest() { public void uploadFileWithRequiredFileTest() {
Long petId = null; // uncomment below to test the function
File requiredFile = null; //Long petId = null;
String additionalMetadata = null; //File requiredFile = null;
ModelApiResponse response = api.uploadFileWithRequiredFile(petId, requiredFile, additionalMetadata).block(); //String additionalMetadata = null;
//ModelApiResponse response = api.uploadFileWithRequiredFile(petId, requiredFile, additionalMetadata).block();
// TODO: test validations // TODO: test validations
} }

View File

@ -14,8 +14,9 @@
package org.openapitools.client.api; package org.openapitools.client.api;
import org.openapitools.client.model.Order; import org.openapitools.client.model.Order;
import org.junit.Test; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
@ -26,7 +27,7 @@ import java.util.stream.Collectors;
/** /**
* API tests for StoreApi * API tests for StoreApi
*/ */
@Ignore @Disabled
public class StoreApiTest { public class StoreApiTest {
private final StoreApi api = new StoreApi(); private final StoreApi api = new StoreApi();
@ -39,8 +40,9 @@ public class StoreApiTest {
*/ */
@Test @Test
public void deleteOrderTest() { public void deleteOrderTest() {
String orderId = null; // uncomment below to test the function
api.deleteOrder(orderId).block(); //String orderId = null;
//api.deleteOrder(orderId).block();
// TODO: test validations // TODO: test validations
} }
@ -52,7 +54,8 @@ public class StoreApiTest {
*/ */
@Test @Test
public void getInventoryTest() { public void getInventoryTest() {
Map<String, Integer> response = api.getInventory().block(); // uncomment below to test the function
//Map<String, Integer> response = api.getInventory().block();
// TODO: test validations // TODO: test validations
} }
@ -64,8 +67,9 @@ public class StoreApiTest {
*/ */
@Test @Test
public void getOrderByIdTest() { public void getOrderByIdTest() {
Long orderId = null; // uncomment below to test the function
Order response = api.getOrderById(orderId).block(); //Long orderId = null;
//Order response = api.getOrderById(orderId).block();
// TODO: test validations // TODO: test validations
} }
@ -77,8 +81,9 @@ public class StoreApiTest {
*/ */
@Test @Test
public void placeOrderTest() { public void placeOrderTest() {
Order order = null; // uncomment below to test the function
Order response = api.placeOrder(order).block(); //Order order = null;
//Order response = api.placeOrder(order).block();
// TODO: test validations // TODO: test validations
} }

View File

@ -15,8 +15,9 @@ package org.openapitools.client.api;
import java.time.OffsetDateTime; import java.time.OffsetDateTime;
import org.openapitools.client.model.User; import org.openapitools.client.model.User;
import org.junit.Test; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
@ -27,7 +28,7 @@ import java.util.stream.Collectors;
/** /**
* API tests for UserApi * API tests for UserApi
*/ */
@Ignore @Disabled
public class UserApiTest { public class UserApiTest {
private final UserApi api = new UserApi(); private final UserApi api = new UserApi();
@ -40,8 +41,9 @@ public class UserApiTest {
*/ */
@Test @Test
public void createUserTest() { public void createUserTest() {
User user = null; // uncomment below to test the function
api.createUser(user).block(); //User user = null;
//api.createUser(user).block();
// TODO: test validations // TODO: test validations
} }
@ -53,8 +55,9 @@ public class UserApiTest {
*/ */
@Test @Test
public void createUsersWithArrayInputTest() { public void createUsersWithArrayInputTest() {
List<User> user = null; // uncomment below to test the function
api.createUsersWithArrayInput(user).block(); //List<User> user = null;
//api.createUsersWithArrayInput(user).block();
// TODO: test validations // TODO: test validations
} }
@ -66,8 +69,9 @@ public class UserApiTest {
*/ */
@Test @Test
public void createUsersWithListInputTest() { public void createUsersWithListInputTest() {
List<User> user = null; // uncomment below to test the function
api.createUsersWithListInput(user).block(); //List<User> user = null;
//api.createUsersWithListInput(user).block();
// TODO: test validations // TODO: test validations
} }
@ -79,8 +83,9 @@ public class UserApiTest {
*/ */
@Test @Test
public void deleteUserTest() { public void deleteUserTest() {
String username = null; // uncomment below to test the function
api.deleteUser(username).block(); //String username = null;
//api.deleteUser(username).block();
// TODO: test validations // TODO: test validations
} }
@ -92,8 +97,9 @@ public class UserApiTest {
*/ */
@Test @Test
public void getUserByNameTest() { public void getUserByNameTest() {
String username = null; // uncomment below to test the function
User response = api.getUserByName(username).block(); //String username = null;
//User response = api.getUserByName(username).block();
// TODO: test validations // TODO: test validations
} }
@ -105,9 +111,10 @@ public class UserApiTest {
*/ */
@Test @Test
public void loginUserTest() { public void loginUserTest() {
String username = null; // uncomment below to test the function
String password = null; //String username = null;
String response = api.loginUser(username, password).block(); //String password = null;
//String response = api.loginUser(username, password).block();
// TODO: test validations // TODO: test validations
} }
@ -119,7 +126,8 @@ public class UserApiTest {
*/ */
@Test @Test
public void logoutUserTest() { public void logoutUserTest() {
api.logoutUser().block(); // uncomment below to test the function
//api.logoutUser().block();
// TODO: test validations // TODO: test validations
} }
@ -131,9 +139,10 @@ public class UserApiTest {
*/ */
@Test @Test
public void updateUserTest() { public void updateUserTest() {
String username = null; // uncomment below to test the function
User user = null; //String username = null;
api.updateUser(username, user).block(); //User user = null;
//api.updateUser(username, user).block();
// TODO: test validations // TODO: test validations
} }

View File

@ -20,22 +20,21 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map; import java.util.Map;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for AdditionalPropertiesClass * Model tests for AdditionalPropertiesClass
*/ */
public class AdditionalPropertiesClassTest { class AdditionalPropertiesClassTest {
private final AdditionalPropertiesClass model = new AdditionalPropertiesClass(); private final AdditionalPropertiesClass model = new AdditionalPropertiesClass();
/** /**
* Model tests for AdditionalPropertiesClass * Model tests for AdditionalPropertiesClass
*/ */
@Test @Test
public void testAdditionalPropertiesClass() { void testAdditionalPropertiesClass() {
// TODO: test AdditionalPropertiesClass // TODO: test AdditionalPropertiesClass
} }
@ -43,7 +42,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapProperty' * Test the property 'mapProperty'
*/ */
@Test @Test
public void mapPropertyTest() { void mapPropertyTest() {
// TODO: test mapProperty // TODO: test mapProperty
} }
@ -51,7 +50,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapOfMapProperty' * Test the property 'mapOfMapProperty'
*/ */
@Test @Test
public void mapOfMapPropertyTest() { void mapOfMapPropertyTest() {
// TODO: test mapOfMapProperty // TODO: test mapOfMapProperty
} }

View File

@ -19,22 +19,21 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.openapitools.client.model.SingleRefType; import org.openapitools.client.model.SingleRefType;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for AllOfWithSingleRef * Model tests for AllOfWithSingleRef
*/ */
public class AllOfWithSingleRefTest { class AllOfWithSingleRefTest {
private final AllOfWithSingleRef model = new AllOfWithSingleRef(); private final AllOfWithSingleRef model = new AllOfWithSingleRef();
/** /**
* Model tests for AllOfWithSingleRef * Model tests for AllOfWithSingleRef
*/ */
@Test @Test
public void testAllOfWithSingleRef() { void testAllOfWithSingleRef() {
// TODO: test AllOfWithSingleRef // TODO: test AllOfWithSingleRef
} }
@ -42,7 +41,7 @@ public class AllOfWithSingleRefTest {
* Test the property 'username' * Test the property 'username'
*/ */
@Test @Test
public void usernameTest() { void usernameTest() {
// TODO: test username // TODO: test username
} }
@ -50,7 +49,7 @@ public class AllOfWithSingleRefTest {
* Test the property 'singleRefType' * Test the property 'singleRefType'
*/ */
@Test @Test
public void singleRefTypeTest() { void singleRefTypeTest() {
// TODO: test singleRefType // TODO: test singleRefType
} }

View File

@ -21,24 +21,21 @@ import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo; import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.openapitools.client.model.Cat; import org.junit.jupiter.api.Assertions;
import org.openapitools.client.model.Dog; import org.junit.jupiter.api.Disabled;
import org.junit.Assert; import org.junit.jupiter.api.Test;
import org.junit.Ignore;
import org.junit.Test;
/** /**
* Model tests for Animal * Model tests for Animal
*/ */
public class AnimalTest { class AnimalTest {
private final Animal model = new Animal(); private final Animal model = new Animal();
/** /**
* Model tests for Animal * Model tests for Animal
*/ */
@Test @Test
public void testAnimal() { void testAnimal() {
// TODO: test Animal // TODO: test Animal
} }
@ -46,7 +43,7 @@ public class AnimalTest {
* Test the property 'className' * Test the property 'className'
*/ */
@Test @Test
public void classNameTest() { void classNameTest() {
// TODO: test className // TODO: test className
} }
@ -54,7 +51,7 @@ public class AnimalTest {
* Test the property 'color' * Test the property 'color'
*/ */
@Test @Test
public void colorTest() { void colorTest() {
// TODO: test color // TODO: test color
} }

View File

@ -20,23 +20,23 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import java.math.BigDecimal; import java.math.BigDecimal;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays;
import java.util.List; import java.util.List;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for ArrayOfArrayOfNumberOnly * Model tests for ArrayOfArrayOfNumberOnly
*/ */
public class ArrayOfArrayOfNumberOnlyTest { class ArrayOfArrayOfNumberOnlyTest {
private final ArrayOfArrayOfNumberOnly model = new ArrayOfArrayOfNumberOnly(); private final ArrayOfArrayOfNumberOnly model = new ArrayOfArrayOfNumberOnly();
/** /**
* Model tests for ArrayOfArrayOfNumberOnly * Model tests for ArrayOfArrayOfNumberOnly
*/ */
@Test @Test
public void testArrayOfArrayOfNumberOnly() { void testArrayOfArrayOfNumberOnly() {
// TODO: test ArrayOfArrayOfNumberOnly // TODO: test ArrayOfArrayOfNumberOnly
} }
@ -44,7 +44,7 @@ public class ArrayOfArrayOfNumberOnlyTest {
* Test the property 'arrayArrayNumber' * Test the property 'arrayArrayNumber'
*/ */
@Test @Test
public void arrayArrayNumberTest() { void arrayArrayNumberTest() {
// TODO: test arrayArrayNumber // TODO: test arrayArrayNumber
} }

View File

@ -20,23 +20,23 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import java.math.BigDecimal; import java.math.BigDecimal;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays;
import java.util.List; import java.util.List;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for ArrayOfNumberOnly * Model tests for ArrayOfNumberOnly
*/ */
public class ArrayOfNumberOnlyTest { class ArrayOfNumberOnlyTest {
private final ArrayOfNumberOnly model = new ArrayOfNumberOnly(); private final ArrayOfNumberOnly model = new ArrayOfNumberOnly();
/** /**
* Model tests for ArrayOfNumberOnly * Model tests for ArrayOfNumberOnly
*/ */
@Test @Test
public void testArrayOfNumberOnly() { void testArrayOfNumberOnly() {
// TODO: test ArrayOfNumberOnly // TODO: test ArrayOfNumberOnly
} }
@ -44,7 +44,7 @@ public class ArrayOfNumberOnlyTest {
* Test the property 'arrayNumber' * Test the property 'arrayNumber'
*/ */
@Test @Test
public void arrayNumberTest() { void arrayNumberTest() {
// TODO: test arrayNumber // TODO: test arrayNumber
} }

View File

@ -19,24 +19,24 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays;
import java.util.List; import java.util.List;
import org.openapitools.client.model.ReadOnlyFirst; import org.openapitools.client.model.ReadOnlyFirst;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for ArrayTest * Model tests for ArrayTest
*/ */
public class ArrayTestTest { class ArrayTestTest {
private final ArrayTest model = new ArrayTest(); private final ArrayTest model = new ArrayTest();
/** /**
* Model tests for ArrayTest * Model tests for ArrayTest
*/ */
@Test @Test
public void testArrayTest() { void testArrayTest() {
// TODO: test ArrayTest // TODO: test ArrayTest
} }
@ -44,7 +44,7 @@ public class ArrayTestTest {
* Test the property 'arrayOfString' * Test the property 'arrayOfString'
*/ */
@Test @Test
public void arrayOfStringTest() { void arrayOfStringTest() {
// TODO: test arrayOfString // TODO: test arrayOfString
} }
@ -52,7 +52,7 @@ public class ArrayTestTest {
* Test the property 'arrayArrayOfInteger' * Test the property 'arrayArrayOfInteger'
*/ */
@Test @Test
public void arrayArrayOfIntegerTest() { void arrayArrayOfIntegerTest() {
// TODO: test arrayArrayOfInteger // TODO: test arrayArrayOfInteger
} }
@ -60,7 +60,7 @@ public class ArrayTestTest {
* Test the property 'arrayArrayOfModel' * Test the property 'arrayArrayOfModel'
*/ */
@Test @Test
public void arrayArrayOfModelTest() { void arrayArrayOfModelTest() {
// TODO: test arrayArrayOfModel // TODO: test arrayArrayOfModel
} }

View File

@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for Capitalization * Model tests for Capitalization
*/ */
public class CapitalizationTest { class CapitalizationTest {
private final Capitalization model = new Capitalization(); private final Capitalization model = new Capitalization();
/** /**
* Model tests for Capitalization * Model tests for Capitalization
*/ */
@Test @Test
public void testCapitalization() { void testCapitalization() {
// TODO: test Capitalization // TODO: test Capitalization
} }
@ -41,7 +40,7 @@ public class CapitalizationTest {
* Test the property 'smallCamel' * Test the property 'smallCamel'
*/ */
@Test @Test
public void smallCamelTest() { void smallCamelTest() {
// TODO: test smallCamel // TODO: test smallCamel
} }
@ -49,7 +48,7 @@ public class CapitalizationTest {
* Test the property 'capitalCamel' * Test the property 'capitalCamel'
*/ */
@Test @Test
public void capitalCamelTest() { void capitalCamelTest() {
// TODO: test capitalCamel // TODO: test capitalCamel
} }
@ -57,7 +56,7 @@ public class CapitalizationTest {
* Test the property 'smallSnake' * Test the property 'smallSnake'
*/ */
@Test @Test
public void smallSnakeTest() { void smallSnakeTest() {
// TODO: test smallSnake // TODO: test smallSnake
} }
@ -65,7 +64,7 @@ public class CapitalizationTest {
* Test the property 'capitalSnake' * Test the property 'capitalSnake'
*/ */
@Test @Test
public void capitalSnakeTest() { void capitalSnakeTest() {
// TODO: test capitalSnake // TODO: test capitalSnake
} }
@ -73,7 +72,7 @@ public class CapitalizationTest {
* Test the property 'scAETHFlowPoints' * Test the property 'scAETHFlowPoints'
*/ */
@Test @Test
public void scAETHFlowPointsTest() { void scAETHFlowPointsTest() {
// TODO: test scAETHFlowPoints // TODO: test scAETHFlowPoints
} }
@ -81,7 +80,7 @@ public class CapitalizationTest {
* Test the property 'ATT_NAME' * Test the property 'ATT_NAME'
*/ */
@Test @Test
public void ATT_NAMETest() { void ATT_NAMETest() {
// TODO: test ATT_NAME // TODO: test ATT_NAME
} }

View File

@ -22,22 +22,21 @@ import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.openapitools.client.model.Animal; import org.openapitools.client.model.Animal;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for Cat * Model tests for Cat
*/ */
public class CatTest { class CatTest {
private final Cat model = new Cat(); private final Cat model = new Cat();
/** /**
* Model tests for Cat * Model tests for Cat
*/ */
@Test @Test
public void testCat() { void testCat() {
// TODO: test Cat // TODO: test Cat
} }
@ -45,7 +44,7 @@ public class CatTest {
* Test the property 'className' * Test the property 'className'
*/ */
@Test @Test
public void classNameTest() { void classNameTest() {
// TODO: test className // TODO: test className
} }
@ -53,7 +52,7 @@ public class CatTest {
* Test the property 'color' * Test the property 'color'
*/ */
@Test @Test
public void colorTest() { void colorTest() {
// TODO: test color // TODO: test color
} }
@ -61,7 +60,7 @@ public class CatTest {
* Test the property 'declawed' * Test the property 'declawed'
*/ */
@Test @Test
public void declawedTest() { void declawedTest() {
// TODO: test declawed // TODO: test declawed
} }

View File

@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for Category * Model tests for Category
*/ */
public class CategoryTest { class CategoryTest {
private final Category model = new Category(); private final Category model = new Category();
/** /**
* Model tests for Category * Model tests for Category
*/ */
@Test @Test
public void testCategory() { void testCategory() {
// TODO: test Category // TODO: test Category
} }
@ -41,7 +40,7 @@ public class CategoryTest {
* Test the property 'id' * Test the property 'id'
*/ */
@Test @Test
public void idTest() { void idTest() {
// TODO: test id // TODO: test id
} }
@ -49,7 +48,7 @@ public class CategoryTest {
* Test the property 'name' * Test the property 'name'
*/ */
@Test @Test
public void nameTest() { void nameTest() {
// TODO: test name // TODO: test name
} }

View File

@ -23,21 +23,21 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.openapitools.client.model.ParentWithNullable; import org.openapitools.client.model.ParentWithNullable;
import org.openapitools.jackson.nullable.JsonNullable; import org.openapitools.jackson.nullable.JsonNullable;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for ChildWithNullable * Model tests for ChildWithNullable
*/ */
public class ChildWithNullableTest { class ChildWithNullableTest {
private final ChildWithNullable model = new ChildWithNullable(); private final ChildWithNullable model = new ChildWithNullable();
/** /**
* Model tests for ChildWithNullable * Model tests for ChildWithNullable
*/ */
@Test @Test
public void testChildWithNullable() { void testChildWithNullable() {
// TODO: test ChildWithNullable // TODO: test ChildWithNullable
} }
@ -45,7 +45,7 @@ public class ChildWithNullableTest {
* Test the property 'type' * Test the property 'type'
*/ */
@Test @Test
public void typeTest() { void typeTest() {
// TODO: test type // TODO: test type
} }
@ -53,7 +53,7 @@ public class ChildWithNullableTest {
* Test the property 'nullableProperty' * Test the property 'nullableProperty'
*/ */
@Test @Test
public void nullablePropertyTest() { void nullablePropertyTest() {
// TODO: test nullableProperty // TODO: test nullableProperty
} }
@ -61,7 +61,7 @@ public class ChildWithNullableTest {
* Test the property 'otherProperty' * Test the property 'otherProperty'
*/ */
@Test @Test
public void otherPropertyTest() { void otherPropertyTest() {
// TODO: test otherProperty // TODO: test otherProperty
} }

View File

@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for ClassModel * Model tests for ClassModel
*/ */
public class ClassModelTest { class ClassModelTest {
private final ClassModel model = new ClassModel(); private final ClassModel model = new ClassModel();
/** /**
* Model tests for ClassModel * Model tests for ClassModel
*/ */
@Test @Test
public void testClassModel() { void testClassModel() {
// TODO: test ClassModel // TODO: test ClassModel
} }
@ -41,7 +40,7 @@ public class ClassModelTest {
* Test the property 'propertyClass' * Test the property 'propertyClass'
*/ */
@Test @Test
public void propertyClassTest() { void propertyClassTest() {
// TODO: test propertyClass // TODO: test propertyClass
} }

View File

@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for Client * Model tests for Client
*/ */
public class ClientTest { class ClientTest {
private final Client model = new Client(); private final Client model = new Client();
/** /**
* Model tests for Client * Model tests for Client
*/ */
@Test @Test
public void testClient() { void testClient() {
// TODO: test Client // TODO: test Client
} }
@ -41,7 +40,7 @@ public class ClientTest {
* Test the property 'client' * Test the property 'client'
*/ */
@Test @Test
public void clientTest() { void clientTest() {
// TODO: test client // TODO: test client
} }

View File

@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for DeprecatedObject * Model tests for DeprecatedObject
*/ */
public class DeprecatedObjectTest { class DeprecatedObjectTest {
private final DeprecatedObject model = new DeprecatedObject(); private final DeprecatedObject model = new DeprecatedObject();
/** /**
* Model tests for DeprecatedObject * Model tests for DeprecatedObject
*/ */
@Test @Test
public void testDeprecatedObject() { void testDeprecatedObject() {
// TODO: test DeprecatedObject // TODO: test DeprecatedObject
} }
@ -41,7 +40,7 @@ public class DeprecatedObjectTest {
* Test the property 'name' * Test the property 'name'
*/ */
@Test @Test
public void nameTest() { void nameTest() {
// TODO: test name // TODO: test name
} }

View File

@ -22,22 +22,21 @@ import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.openapitools.client.model.Animal; import org.openapitools.client.model.Animal;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for Dog * Model tests for Dog
*/ */
public class DogTest { class DogTest {
private final Dog model = new Dog(); private final Dog model = new Dog();
/** /**
* Model tests for Dog * Model tests for Dog
*/ */
@Test @Test
public void testDog() { void testDog() {
// TODO: test Dog // TODO: test Dog
} }
@ -45,7 +44,7 @@ public class DogTest {
* Test the property 'className' * Test the property 'className'
*/ */
@Test @Test
public void classNameTest() { void classNameTest() {
// TODO: test className // TODO: test className
} }
@ -53,7 +52,7 @@ public class DogTest {
* Test the property 'color' * Test the property 'color'
*/ */
@Test @Test
public void colorTest() { void colorTest() {
// TODO: test color // TODO: test color
} }
@ -61,7 +60,7 @@ public class DogTest {
* Test the property 'breed' * Test the property 'breed'
*/ */
@Test @Test
public void breedTest() { void breedTest() {
// TODO: test breed // TODO: test breed
} }

View File

@ -19,23 +19,23 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays;
import java.util.List; import java.util.List;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for EnumArrays * Model tests for EnumArrays
*/ */
public class EnumArraysTest { class EnumArraysTest {
private final EnumArrays model = new EnumArrays(); private final EnumArrays model = new EnumArrays();
/** /**
* Model tests for EnumArrays * Model tests for EnumArrays
*/ */
@Test @Test
public void testEnumArrays() { void testEnumArrays() {
// TODO: test EnumArrays // TODO: test EnumArrays
} }
@ -43,7 +43,7 @@ public class EnumArraysTest {
* Test the property 'justSymbol' * Test the property 'justSymbol'
*/ */
@Test @Test
public void justSymbolTest() { void justSymbolTest() {
// TODO: test justSymbol // TODO: test justSymbol
} }
@ -51,7 +51,7 @@ public class EnumArraysTest {
* Test the property 'arrayEnum' * Test the property 'arrayEnum'
*/ */
@Test @Test
public void arrayEnumTest() { void arrayEnumTest() {
// TODO: test arrayEnum // TODO: test arrayEnum
} }

View File

@ -13,20 +13,19 @@
package org.openapitools.client.model; package org.openapitools.client.model;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for EnumClass * Model tests for EnumClass
*/ */
public class EnumClassTest { class EnumClassTest {
/** /**
* Model tests for EnumClass * Model tests for EnumClass
*/ */
@Test @Test
public void testEnumClass() { void testEnumClass() {
// TODO: test EnumClass // TODO: test EnumClass
} }

View File

@ -26,22 +26,21 @@ import org.openapitools.jackson.nullable.JsonNullable;
import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonIgnore;
import org.openapitools.jackson.nullable.JsonNullable; import org.openapitools.jackson.nullable.JsonNullable;
import java.util.NoSuchElementException; import java.util.NoSuchElementException;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for EnumTest * Model tests for EnumTest
*/ */
public class EnumTestTest { class EnumTestTest {
private final EnumTest model = new EnumTest(); private final EnumTest model = new EnumTest();
/** /**
* Model tests for EnumTest * Model tests for EnumTest
*/ */
@Test @Test
public void testEnumTest() { void testEnumTest() {
// TODO: test EnumTest // TODO: test EnumTest
} }
@ -49,7 +48,7 @@ public class EnumTestTest {
* Test the property 'enumString' * Test the property 'enumString'
*/ */
@Test @Test
public void enumStringTest() { void enumStringTest() {
// TODO: test enumString // TODO: test enumString
} }
@ -57,7 +56,7 @@ public class EnumTestTest {
* Test the property 'enumStringRequired' * Test the property 'enumStringRequired'
*/ */
@Test @Test
public void enumStringRequiredTest() { void enumStringRequiredTest() {
// TODO: test enumStringRequired // TODO: test enumStringRequired
} }
@ -65,7 +64,7 @@ public class EnumTestTest {
* Test the property 'enumInteger' * Test the property 'enumInteger'
*/ */
@Test @Test
public void enumIntegerTest() { void enumIntegerTest() {
// TODO: test enumInteger // TODO: test enumInteger
} }
@ -73,7 +72,7 @@ public class EnumTestTest {
* Test the property 'enumNumber' * Test the property 'enumNumber'
*/ */
@Test @Test
public void enumNumberTest() { void enumNumberTest() {
// TODO: test enumNumber // TODO: test enumNumber
} }
@ -81,7 +80,7 @@ public class EnumTestTest {
* Test the property 'outerEnum' * Test the property 'outerEnum'
*/ */
@Test @Test
public void outerEnumTest() { void outerEnumTest() {
// TODO: test outerEnum // TODO: test outerEnum
} }
@ -89,7 +88,7 @@ public class EnumTestTest {
* Test the property 'outerEnumInteger' * Test the property 'outerEnumInteger'
*/ */
@Test @Test
public void outerEnumIntegerTest() { void outerEnumIntegerTest() {
// TODO: test outerEnumInteger // TODO: test outerEnumInteger
} }
@ -97,7 +96,7 @@ public class EnumTestTest {
* Test the property 'outerEnumDefaultValue' * Test the property 'outerEnumDefaultValue'
*/ */
@Test @Test
public void outerEnumDefaultValueTest() { void outerEnumDefaultValueTest() {
// TODO: test outerEnumDefaultValue // TODO: test outerEnumDefaultValue
} }
@ -105,7 +104,7 @@ public class EnumTestTest {
* Test the property 'outerEnumIntegerDefaultValue' * Test the property 'outerEnumIntegerDefaultValue'
*/ */
@Test @Test
public void outerEnumIntegerDefaultValueTest() { void outerEnumIntegerDefaultValueTest() {
// TODO: test outerEnumIntegerDefaultValue // TODO: test outerEnumIntegerDefaultValue
} }

View File

@ -21,21 +21,21 @@ import com.fasterxml.jackson.annotation.JsonValue;
import java.math.BigDecimal; import java.math.BigDecimal;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map; import java.util.Map;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for FakeBigDecimalMap200Response * Model tests for FakeBigDecimalMap200Response
*/ */
public class FakeBigDecimalMap200ResponseTest { class FakeBigDecimalMap200ResponseTest {
private final FakeBigDecimalMap200Response model = new FakeBigDecimalMap200Response(); private final FakeBigDecimalMap200Response model = new FakeBigDecimalMap200Response();
/** /**
* Model tests for FakeBigDecimalMap200Response * Model tests for FakeBigDecimalMap200Response
*/ */
@Test @Test
public void testFakeBigDecimalMap200Response() { void testFakeBigDecimalMap200Response() {
// TODO: test FakeBigDecimalMap200Response // TODO: test FakeBigDecimalMap200Response
} }
@ -43,7 +43,7 @@ public class FakeBigDecimalMap200ResponseTest {
* Test the property 'someId' * Test the property 'someId'
*/ */
@Test @Test
public void someIdTest() { void someIdTest() {
// TODO: test someId // TODO: test someId
} }
@ -51,7 +51,7 @@ public class FakeBigDecimalMap200ResponseTest {
* Test the property 'someMap' * Test the property 'someMap'
*/ */
@Test @Test
public void someMapTest() { void someMapTest() {
// TODO: test someMap // TODO: test someMap
} }

View File

@ -19,24 +19,24 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays;
import java.util.List; import java.util.List;
import org.openapitools.client.model.ModelFile; import org.openapitools.client.model.ModelFile;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for FileSchemaTestClass * Model tests for FileSchemaTestClass
*/ */
public class FileSchemaTestClassTest { class FileSchemaTestClassTest {
private final FileSchemaTestClass model = new FileSchemaTestClass(); private final FileSchemaTestClass model = new FileSchemaTestClass();
/** /**
* Model tests for FileSchemaTestClass * Model tests for FileSchemaTestClass
*/ */
@Test @Test
public void testFileSchemaTestClass() { void testFileSchemaTestClass() {
// TODO: test FileSchemaTestClass // TODO: test FileSchemaTestClass
} }
@ -44,7 +44,7 @@ public class FileSchemaTestClassTest {
* Test the property '_file' * Test the property '_file'
*/ */
@Test @Test
public void _fileTest() { void _fileTest() {
// TODO: test _file // TODO: test _file
} }
@ -52,7 +52,7 @@ public class FileSchemaTestClassTest {
* Test the property 'files' * Test the property 'files'
*/ */
@Test @Test
public void filesTest() { void filesTest() {
// TODO: test files // TODO: test files
} }

View File

@ -19,22 +19,21 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.openapitools.client.model.Foo; import org.openapitools.client.model.Foo;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for FooGetDefaultResponse * Model tests for FooGetDefaultResponse
*/ */
public class FooGetDefaultResponseTest { class FooGetDefaultResponseTest {
private final FooGetDefaultResponse model = new FooGetDefaultResponse(); private final FooGetDefaultResponse model = new FooGetDefaultResponse();
/** /**
* Model tests for FooGetDefaultResponse * Model tests for FooGetDefaultResponse
*/ */
@Test @Test
public void testFooGetDefaultResponse() { void testFooGetDefaultResponse() {
// TODO: test FooGetDefaultResponse // TODO: test FooGetDefaultResponse
} }
@ -42,7 +41,7 @@ public class FooGetDefaultResponseTest {
* Test the property 'string' * Test the property 'string'
*/ */
@Test @Test
public void stringTest() { void stringTest() {
// TODO: test string // TODO: test string
} }

View File

@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for Foo * Model tests for Foo
*/ */
public class FooTest { class FooTest {
private final Foo model = new Foo(); private final Foo model = new Foo();
/** /**
* Model tests for Foo * Model tests for Foo
*/ */
@Test @Test
public void testFoo() { void testFoo() {
// TODO: test Foo // TODO: test Foo
} }
@ -41,7 +40,7 @@ public class FooTest {
* Test the property 'bar' * Test the property 'bar'
*/ */
@Test @Test
public void barTest() { void barTest() {
// TODO: test bar // TODO: test bar
} }

View File

@ -23,22 +23,21 @@ import java.math.BigDecimal;
import java.time.LocalDate; import java.time.LocalDate;
import java.time.OffsetDateTime; import java.time.OffsetDateTime;
import java.util.UUID; import java.util.UUID;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for FormatTest * Model tests for FormatTest
*/ */
public class FormatTestTest { class FormatTestTest {
private final FormatTest model = new FormatTest(); private final FormatTest model = new FormatTest();
/** /**
* Model tests for FormatTest * Model tests for FormatTest
*/ */
@Test @Test
public void testFormatTest() { void testFormatTest() {
// TODO: test FormatTest // TODO: test FormatTest
} }
@ -46,7 +45,7 @@ public class FormatTestTest {
* Test the property 'integer' * Test the property 'integer'
*/ */
@Test @Test
public void integerTest() { void integerTest() {
// TODO: test integer // TODO: test integer
} }
@ -54,7 +53,7 @@ public class FormatTestTest {
* Test the property 'int32' * Test the property 'int32'
*/ */
@Test @Test
public void int32Test() { void int32Test() {
// TODO: test int32 // TODO: test int32
} }
@ -62,7 +61,7 @@ public class FormatTestTest {
* Test the property 'int64' * Test the property 'int64'
*/ */
@Test @Test
public void int64Test() { void int64Test() {
// TODO: test int64 // TODO: test int64
} }
@ -70,7 +69,7 @@ public class FormatTestTest {
* Test the property 'number' * Test the property 'number'
*/ */
@Test @Test
public void numberTest() { void numberTest() {
// TODO: test number // TODO: test number
} }
@ -78,7 +77,7 @@ public class FormatTestTest {
* Test the property '_float' * Test the property '_float'
*/ */
@Test @Test
public void _floatTest() { void _floatTest() {
// TODO: test _float // TODO: test _float
} }
@ -86,7 +85,7 @@ public class FormatTestTest {
* Test the property '_double' * Test the property '_double'
*/ */
@Test @Test
public void _doubleTest() { void _doubleTest() {
// TODO: test _double // TODO: test _double
} }
@ -94,7 +93,7 @@ public class FormatTestTest {
* Test the property 'decimal' * Test the property 'decimal'
*/ */
@Test @Test
public void decimalTest() { void decimalTest() {
// TODO: test decimal // TODO: test decimal
} }
@ -102,7 +101,7 @@ public class FormatTestTest {
* Test the property 'string' * Test the property 'string'
*/ */
@Test @Test
public void stringTest() { void stringTest() {
// TODO: test string // TODO: test string
} }
@ -110,7 +109,7 @@ public class FormatTestTest {
* Test the property '_byte' * Test the property '_byte'
*/ */
@Test @Test
public void _byteTest() { void _byteTest() {
// TODO: test _byte // TODO: test _byte
} }
@ -118,7 +117,7 @@ public class FormatTestTest {
* Test the property 'binary' * Test the property 'binary'
*/ */
@Test @Test
public void binaryTest() { void binaryTest() {
// TODO: test binary // TODO: test binary
} }
@ -126,7 +125,7 @@ public class FormatTestTest {
* Test the property 'date' * Test the property 'date'
*/ */
@Test @Test
public void dateTest() { void dateTest() {
// TODO: test date // TODO: test date
} }
@ -134,7 +133,7 @@ public class FormatTestTest {
* Test the property 'dateTime' * Test the property 'dateTime'
*/ */
@Test @Test
public void dateTimeTest() { void dateTimeTest() {
// TODO: test dateTime // TODO: test dateTime
} }
@ -142,7 +141,7 @@ public class FormatTestTest {
* Test the property 'uuid' * Test the property 'uuid'
*/ */
@Test @Test
public void uuidTest() { void uuidTest() {
// TODO: test uuid // TODO: test uuid
} }
@ -150,7 +149,7 @@ public class FormatTestTest {
* Test the property 'password' * Test the property 'password'
*/ */
@Test @Test
public void passwordTest() { void passwordTest() {
// TODO: test password // TODO: test password
} }
@ -158,7 +157,7 @@ public class FormatTestTest {
* Test the property 'patternWithDigits' * Test the property 'patternWithDigits'
*/ */
@Test @Test
public void patternWithDigitsTest() { void patternWithDigitsTest() {
// TODO: test patternWithDigits // TODO: test patternWithDigits
} }
@ -166,7 +165,7 @@ public class FormatTestTest {
* Test the property 'patternWithDigitsAndDelimiter' * Test the property 'patternWithDigitsAndDelimiter'
*/ */
@Test @Test
public void patternWithDigitsAndDelimiterTest() { void patternWithDigitsAndDelimiterTest() {
// TODO: test patternWithDigitsAndDelimiter // TODO: test patternWithDigitsAndDelimiter
} }

View File

@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for HasOnlyReadOnly * Model tests for HasOnlyReadOnly
*/ */
public class HasOnlyReadOnlyTest { class HasOnlyReadOnlyTest {
private final HasOnlyReadOnly model = new HasOnlyReadOnly(); private final HasOnlyReadOnly model = new HasOnlyReadOnly();
/** /**
* Model tests for HasOnlyReadOnly * Model tests for HasOnlyReadOnly
*/ */
@Test @Test
public void testHasOnlyReadOnly() { void testHasOnlyReadOnly() {
// TODO: test HasOnlyReadOnly // TODO: test HasOnlyReadOnly
} }
@ -41,7 +40,7 @@ public class HasOnlyReadOnlyTest {
* Test the property 'bar' * Test the property 'bar'
*/ */
@Test @Test
public void barTest() { void barTest() {
// TODO: test bar // TODO: test bar
} }
@ -49,7 +48,7 @@ public class HasOnlyReadOnlyTest {
* Test the property 'foo' * Test the property 'foo'
*/ */
@Test @Test
public void fooTest() { void fooTest() {
// TODO: test foo // TODO: test foo
} }

View File

@ -22,22 +22,21 @@ import org.openapitools.jackson.nullable.JsonNullable;
import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonIgnore;
import org.openapitools.jackson.nullable.JsonNullable; import org.openapitools.jackson.nullable.JsonNullable;
import java.util.NoSuchElementException; import java.util.NoSuchElementException;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for HealthCheckResult * Model tests for HealthCheckResult
*/ */
public class HealthCheckResultTest { class HealthCheckResultTest {
private final HealthCheckResult model = new HealthCheckResult(); private final HealthCheckResult model = new HealthCheckResult();
/** /**
* Model tests for HealthCheckResult * Model tests for HealthCheckResult
*/ */
@Test @Test
public void testHealthCheckResult() { void testHealthCheckResult() {
// TODO: test HealthCheckResult // TODO: test HealthCheckResult
} }
@ -45,7 +44,7 @@ public class HealthCheckResultTest {
* Test the property 'nullableMessage' * Test the property 'nullableMessage'
*/ */
@Test @Test
public void nullableMessageTest() { void nullableMessageTest() {
// TODO: test nullableMessage // TODO: test nullableMessage
} }

View File

@ -20,22 +20,21 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map; import java.util.Map;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for MapTest * Model tests for MapTest
*/ */
public class MapTestTest { class MapTestTest {
private final MapTest model = new MapTest(); private final MapTest model = new MapTest();
/** /**
* Model tests for MapTest * Model tests for MapTest
*/ */
@Test @Test
public void testMapTest() { void testMapTest() {
// TODO: test MapTest // TODO: test MapTest
} }
@ -43,7 +42,7 @@ public class MapTestTest {
* Test the property 'mapMapOfString' * Test the property 'mapMapOfString'
*/ */
@Test @Test
public void mapMapOfStringTest() { void mapMapOfStringTest() {
// TODO: test mapMapOfString // TODO: test mapMapOfString
} }
@ -51,7 +50,7 @@ public class MapTestTest {
* Test the property 'mapOfEnumString' * Test the property 'mapOfEnumString'
*/ */
@Test @Test
public void mapOfEnumStringTest() { void mapOfEnumStringTest() {
// TODO: test mapOfEnumString // TODO: test mapOfEnumString
} }
@ -59,7 +58,7 @@ public class MapTestTest {
* Test the property 'directMap' * Test the property 'directMap'
*/ */
@Test @Test
public void directMapTest() { void directMapTest() {
// TODO: test directMap // TODO: test directMap
} }
@ -67,7 +66,7 @@ public class MapTestTest {
* Test the property 'indirectMap' * Test the property 'indirectMap'
*/ */
@Test @Test
public void indirectMapTest() { void indirectMapTest() {
// TODO: test indirectMap // TODO: test indirectMap
} }

View File

@ -23,22 +23,21 @@ import java.util.HashMap;
import java.util.Map; import java.util.Map;
import java.util.UUID; import java.util.UUID;
import org.openapitools.client.model.Animal; import org.openapitools.client.model.Animal;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for MixedPropertiesAndAdditionalPropertiesClass * Model tests for MixedPropertiesAndAdditionalPropertiesClass
*/ */
public class MixedPropertiesAndAdditionalPropertiesClassTest { class MixedPropertiesAndAdditionalPropertiesClassTest {
private final MixedPropertiesAndAdditionalPropertiesClass model = new MixedPropertiesAndAdditionalPropertiesClass(); private final MixedPropertiesAndAdditionalPropertiesClass model = new MixedPropertiesAndAdditionalPropertiesClass();
/** /**
* Model tests for MixedPropertiesAndAdditionalPropertiesClass * Model tests for MixedPropertiesAndAdditionalPropertiesClass
*/ */
@Test @Test
public void testMixedPropertiesAndAdditionalPropertiesClass() { void testMixedPropertiesAndAdditionalPropertiesClass() {
// TODO: test MixedPropertiesAndAdditionalPropertiesClass // TODO: test MixedPropertiesAndAdditionalPropertiesClass
} }
@ -46,7 +45,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'uuid' * Test the property 'uuid'
*/ */
@Test @Test
public void uuidTest() { void uuidTest() {
// TODO: test uuid // TODO: test uuid
} }
@ -54,7 +53,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'dateTime' * Test the property 'dateTime'
*/ */
@Test @Test
public void dateTimeTest() { void dateTimeTest() {
// TODO: test dateTime // TODO: test dateTime
} }
@ -62,7 +61,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'map' * Test the property 'map'
*/ */
@Test @Test
public void mapTest() { void mapTest() {
// TODO: test map // TODO: test map
} }

View File

@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for Model200Response * Model tests for Model200Response
*/ */
public class Model200ResponseTest { class Model200ResponseTest {
private final Model200Response model = new Model200Response(); private final Model200Response model = new Model200Response();
/** /**
* Model tests for Model200Response * Model tests for Model200Response
*/ */
@Test @Test
public void testModel200Response() { void testModel200Response() {
// TODO: test Model200Response // TODO: test Model200Response
} }
@ -41,7 +40,7 @@ public class Model200ResponseTest {
* Test the property 'name' * Test the property 'name'
*/ */
@Test @Test
public void nameTest() { void nameTest() {
// TODO: test name // TODO: test name
} }
@ -49,7 +48,7 @@ public class Model200ResponseTest {
* Test the property 'propertyClass' * Test the property 'propertyClass'
*/ */
@Test @Test
public void propertyClassTest() { void propertyClassTest() {
// TODO: test propertyClass // TODO: test propertyClass
} }

View File

@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for ModelApiResponse * Model tests for ModelApiResponse
*/ */
public class ModelApiResponseTest { class ModelApiResponseTest {
private final ModelApiResponse model = new ModelApiResponse(); private final ModelApiResponse model = new ModelApiResponse();
/** /**
* Model tests for ModelApiResponse * Model tests for ModelApiResponse
*/ */
@Test @Test
public void testModelApiResponse() { void testModelApiResponse() {
// TODO: test ModelApiResponse // TODO: test ModelApiResponse
} }
@ -41,7 +40,7 @@ public class ModelApiResponseTest {
* Test the property 'code' * Test the property 'code'
*/ */
@Test @Test
public void codeTest() { void codeTest() {
// TODO: test code // TODO: test code
} }
@ -49,7 +48,7 @@ public class ModelApiResponseTest {
* Test the property 'type' * Test the property 'type'
*/ */
@Test @Test
public void typeTest() { void typeTest() {
// TODO: test type // TODO: test type
} }
@ -57,7 +56,7 @@ public class ModelApiResponseTest {
* Test the property 'message' * Test the property 'message'
*/ */
@Test @Test
public void messageTest() { void messageTest() {
// TODO: test message // TODO: test message
} }

View File

@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for ModelFile * Model tests for ModelFile
*/ */
public class ModelFileTest { class ModelFileTest {
private final ModelFile model = new ModelFile(); private final ModelFile model = new ModelFile();
/** /**
* Model tests for ModelFile * Model tests for ModelFile
*/ */
@Test @Test
public void testModelFile() { void testModelFile() {
// TODO: test ModelFile // TODO: test ModelFile
} }
@ -41,7 +40,7 @@ public class ModelFileTest {
* Test the property 'sourceURI' * Test the property 'sourceURI'
*/ */
@Test @Test
public void sourceURITest() { void sourceURITest() {
// TODO: test sourceURI // TODO: test sourceURI
} }

View File

@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for ModelList * Model tests for ModelList
*/ */
public class ModelListTest { class ModelListTest {
private final ModelList model = new ModelList(); private final ModelList model = new ModelList();
/** /**
* Model tests for ModelList * Model tests for ModelList
*/ */
@Test @Test
public void testModelList() { void testModelList() {
// TODO: test ModelList // TODO: test ModelList
} }
@ -41,7 +40,7 @@ public class ModelListTest {
* Test the property '_123list' * Test the property '_123list'
*/ */
@Test @Test
public void _123listTest() { void _123listTest() {
// TODO: test _123list // TODO: test _123list
} }

View File

@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for ModelReturn * Model tests for ModelReturn
*/ */
public class ModelReturnTest { class ModelReturnTest {
private final ModelReturn model = new ModelReturn(); private final ModelReturn model = new ModelReturn();
/** /**
* Model tests for ModelReturn * Model tests for ModelReturn
*/ */
@Test @Test
public void testModelReturn() { void testModelReturn() {
// TODO: test ModelReturn // TODO: test ModelReturn
} }
@ -41,7 +40,7 @@ public class ModelReturnTest {
* Test the property '_return' * Test the property '_return'
*/ */
@Test @Test
public void _returnTest() { void _returnTest() {
// TODO: test _return // TODO: test _return
} }

View File

@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for Name * Model tests for Name
*/ */
public class NameTest { class NameTest {
private final Name model = new Name(); private final Name model = new Name();
/** /**
* Model tests for Name * Model tests for Name
*/ */
@Test @Test
public void testName() { void testName() {
// TODO: test Name // TODO: test Name
} }
@ -41,7 +40,7 @@ public class NameTest {
* Test the property 'name' * Test the property 'name'
*/ */
@Test @Test
public void nameTest() { void nameTest() {
// TODO: test name // TODO: test name
} }
@ -49,7 +48,7 @@ public class NameTest {
* Test the property 'snakeCase' * Test the property 'snakeCase'
*/ */
@Test @Test
public void snakeCaseTest() { void snakeCaseTest() {
// TODO: test snakeCase // TODO: test snakeCase
} }
@ -57,7 +56,7 @@ public class NameTest {
* Test the property 'property' * Test the property 'property'
*/ */
@Test @Test
public void propertyTest() { void propertyTest() {
// TODO: test property // TODO: test property
} }
@ -65,7 +64,7 @@ public class NameTest {
* Test the property '_123number' * Test the property '_123number'
*/ */
@Test @Test
public void _123numberTest() { void _123numberTest() {
// TODO: test _123number // TODO: test _123number
} }

View File

@ -22,6 +22,7 @@ import java.math.BigDecimal;
import java.time.LocalDate; import java.time.LocalDate;
import java.time.OffsetDateTime; import java.time.OffsetDateTime;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap; import java.util.HashMap;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
@ -29,22 +30,21 @@ import org.openapitools.jackson.nullable.JsonNullable;
import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonIgnore;
import org.openapitools.jackson.nullable.JsonNullable; import org.openapitools.jackson.nullable.JsonNullable;
import java.util.NoSuchElementException; import java.util.NoSuchElementException;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for NullableClass * Model tests for NullableClass
*/ */
public class NullableClassTest { class NullableClassTest {
private final NullableClass model = new NullableClass(); private final NullableClass model = new NullableClass();
/** /**
* Model tests for NullableClass * Model tests for NullableClass
*/ */
@Test @Test
public void testNullableClass() { void testNullableClass() {
// TODO: test NullableClass // TODO: test NullableClass
} }
@ -52,7 +52,7 @@ public class NullableClassTest {
* Test the property 'integerProp' * Test the property 'integerProp'
*/ */
@Test @Test
public void integerPropTest() { void integerPropTest() {
// TODO: test integerProp // TODO: test integerProp
} }
@ -60,7 +60,7 @@ public class NullableClassTest {
* Test the property 'numberProp' * Test the property 'numberProp'
*/ */
@Test @Test
public void numberPropTest() { void numberPropTest() {
// TODO: test numberProp // TODO: test numberProp
} }
@ -68,7 +68,7 @@ public class NullableClassTest {
* Test the property 'booleanProp' * Test the property 'booleanProp'
*/ */
@Test @Test
public void booleanPropTest() { void booleanPropTest() {
// TODO: test booleanProp // TODO: test booleanProp
} }
@ -76,7 +76,7 @@ public class NullableClassTest {
* Test the property 'stringProp' * Test the property 'stringProp'
*/ */
@Test @Test
public void stringPropTest() { void stringPropTest() {
// TODO: test stringProp // TODO: test stringProp
} }
@ -84,7 +84,7 @@ public class NullableClassTest {
* Test the property 'dateProp' * Test the property 'dateProp'
*/ */
@Test @Test
public void datePropTest() { void datePropTest() {
// TODO: test dateProp // TODO: test dateProp
} }
@ -92,7 +92,7 @@ public class NullableClassTest {
* Test the property 'datetimeProp' * Test the property 'datetimeProp'
*/ */
@Test @Test
public void datetimePropTest() { void datetimePropTest() {
// TODO: test datetimeProp // TODO: test datetimeProp
} }
@ -100,7 +100,7 @@ public class NullableClassTest {
* Test the property 'arrayNullableProp' * Test the property 'arrayNullableProp'
*/ */
@Test @Test
public void arrayNullablePropTest() { void arrayNullablePropTest() {
// TODO: test arrayNullableProp // TODO: test arrayNullableProp
} }
@ -108,7 +108,7 @@ public class NullableClassTest {
* Test the property 'arrayAndItemsNullableProp' * Test the property 'arrayAndItemsNullableProp'
*/ */
@Test @Test
public void arrayAndItemsNullablePropTest() { void arrayAndItemsNullablePropTest() {
// TODO: test arrayAndItemsNullableProp // TODO: test arrayAndItemsNullableProp
} }
@ -116,7 +116,7 @@ public class NullableClassTest {
* Test the property 'arrayItemsNullable' * Test the property 'arrayItemsNullable'
*/ */
@Test @Test
public void arrayItemsNullableTest() { void arrayItemsNullableTest() {
// TODO: test arrayItemsNullable // TODO: test arrayItemsNullable
} }
@ -124,7 +124,7 @@ public class NullableClassTest {
* Test the property 'objectNullableProp' * Test the property 'objectNullableProp'
*/ */
@Test @Test
public void objectNullablePropTest() { void objectNullablePropTest() {
// TODO: test objectNullableProp // TODO: test objectNullableProp
} }
@ -132,7 +132,7 @@ public class NullableClassTest {
* Test the property 'objectAndItemsNullableProp' * Test the property 'objectAndItemsNullableProp'
*/ */
@Test @Test
public void objectAndItemsNullablePropTest() { void objectAndItemsNullablePropTest() {
// TODO: test objectAndItemsNullableProp // TODO: test objectAndItemsNullableProp
} }
@ -140,7 +140,7 @@ public class NullableClassTest {
* Test the property 'objectItemsNullable' * Test the property 'objectItemsNullable'
*/ */
@Test @Test
public void objectItemsNullableTest() { void objectItemsNullableTest() {
// TODO: test objectItemsNullable // TODO: test objectItemsNullable
} }

View File

@ -19,22 +19,21 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import java.math.BigDecimal; import java.math.BigDecimal;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for NumberOnly * Model tests for NumberOnly
*/ */
public class NumberOnlyTest { class NumberOnlyTest {
private final NumberOnly model = new NumberOnly(); private final NumberOnly model = new NumberOnly();
/** /**
* Model tests for NumberOnly * Model tests for NumberOnly
*/ */
@Test @Test
public void testNumberOnly() { void testNumberOnly() {
// TODO: test NumberOnly // TODO: test NumberOnly
} }
@ -42,7 +41,7 @@ public class NumberOnlyTest {
* Test the property 'justNumber' * Test the property 'justNumber'
*/ */
@Test @Test
public void justNumberTest() { void justNumberTest() {
// TODO: test justNumber // TODO: test justNumber
} }

View File

@ -20,24 +20,24 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import java.math.BigDecimal; import java.math.BigDecimal;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays;
import java.util.List; import java.util.List;
import org.openapitools.client.model.DeprecatedObject; import org.openapitools.client.model.DeprecatedObject;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for ObjectWithDeprecatedFields * Model tests for ObjectWithDeprecatedFields
*/ */
public class ObjectWithDeprecatedFieldsTest { class ObjectWithDeprecatedFieldsTest {
private final ObjectWithDeprecatedFields model = new ObjectWithDeprecatedFields(); private final ObjectWithDeprecatedFields model = new ObjectWithDeprecatedFields();
/** /**
* Model tests for ObjectWithDeprecatedFields * Model tests for ObjectWithDeprecatedFields
*/ */
@Test @Test
public void testObjectWithDeprecatedFields() { void testObjectWithDeprecatedFields() {
// TODO: test ObjectWithDeprecatedFields // TODO: test ObjectWithDeprecatedFields
} }
@ -45,7 +45,7 @@ public class ObjectWithDeprecatedFieldsTest {
* Test the property 'uuid' * Test the property 'uuid'
*/ */
@Test @Test
public void uuidTest() { void uuidTest() {
// TODO: test uuid // TODO: test uuid
} }
@ -53,7 +53,7 @@ public class ObjectWithDeprecatedFieldsTest {
* Test the property 'id' * Test the property 'id'
*/ */
@Test @Test
public void idTest() { void idTest() {
// TODO: test id // TODO: test id
} }
@ -61,7 +61,7 @@ public class ObjectWithDeprecatedFieldsTest {
* Test the property 'deprecatedRef' * Test the property 'deprecatedRef'
*/ */
@Test @Test
public void deprecatedRefTest() { void deprecatedRefTest() {
// TODO: test deprecatedRef // TODO: test deprecatedRef
} }
@ -69,7 +69,7 @@ public class ObjectWithDeprecatedFieldsTest {
* Test the property 'bars' * Test the property 'bars'
*/ */
@Test @Test
public void barsTest() { void barsTest() {
// TODO: test bars // TODO: test bars
} }

View File

@ -19,22 +19,21 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import java.time.OffsetDateTime; import java.time.OffsetDateTime;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for Order * Model tests for Order
*/ */
public class OrderTest { class OrderTest {
private final Order model = new Order(); private final Order model = new Order();
/** /**
* Model tests for Order * Model tests for Order
*/ */
@Test @Test
public void testOrder() { void testOrder() {
// TODO: test Order // TODO: test Order
} }
@ -42,7 +41,7 @@ public class OrderTest {
* Test the property 'id' * Test the property 'id'
*/ */
@Test @Test
public void idTest() { void idTest() {
// TODO: test id // TODO: test id
} }
@ -50,7 +49,7 @@ public class OrderTest {
* Test the property 'petId' * Test the property 'petId'
*/ */
@Test @Test
public void petIdTest() { void petIdTest() {
// TODO: test petId // TODO: test petId
} }
@ -58,7 +57,7 @@ public class OrderTest {
* Test the property 'quantity' * Test the property 'quantity'
*/ */
@Test @Test
public void quantityTest() { void quantityTest() {
// TODO: test quantity // TODO: test quantity
} }
@ -66,7 +65,7 @@ public class OrderTest {
* Test the property 'shipDate' * Test the property 'shipDate'
*/ */
@Test @Test
public void shipDateTest() { void shipDateTest() {
// TODO: test shipDate // TODO: test shipDate
} }
@ -74,7 +73,7 @@ public class OrderTest {
* Test the property 'status' * Test the property 'status'
*/ */
@Test @Test
public void statusTest() { void statusTest() {
// TODO: test status // TODO: test status
} }
@ -82,7 +81,7 @@ public class OrderTest {
* Test the property 'complete' * Test the property 'complete'
*/ */
@Test @Test
public void completeTest() { void completeTest() {
// TODO: test complete // TODO: test complete
} }

View File

@ -19,22 +19,21 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import java.math.BigDecimal; import java.math.BigDecimal;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for OuterComposite * Model tests for OuterComposite
*/ */
public class OuterCompositeTest { class OuterCompositeTest {
private final OuterComposite model = new OuterComposite(); private final OuterComposite model = new OuterComposite();
/** /**
* Model tests for OuterComposite * Model tests for OuterComposite
*/ */
@Test @Test
public void testOuterComposite() { void testOuterComposite() {
// TODO: test OuterComposite // TODO: test OuterComposite
} }
@ -42,7 +41,7 @@ public class OuterCompositeTest {
* Test the property 'myNumber' * Test the property 'myNumber'
*/ */
@Test @Test
public void myNumberTest() { void myNumberTest() {
// TODO: test myNumber // TODO: test myNumber
} }
@ -50,7 +49,7 @@ public class OuterCompositeTest {
* Test the property 'myString' * Test the property 'myString'
*/ */
@Test @Test
public void myStringTest() { void myStringTest() {
// TODO: test myString // TODO: test myString
} }
@ -58,7 +57,7 @@ public class OuterCompositeTest {
* Test the property 'myBoolean' * Test the property 'myBoolean'
*/ */
@Test @Test
public void myBooleanTest() { void myBooleanTest() {
// TODO: test myBoolean // TODO: test myBoolean
} }

View File

@ -13,20 +13,19 @@
package org.openapitools.client.model; package org.openapitools.client.model;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for OuterEnumDefaultValue * Model tests for OuterEnumDefaultValue
*/ */
public class OuterEnumDefaultValueTest { class OuterEnumDefaultValueTest {
/** /**
* Model tests for OuterEnumDefaultValue * Model tests for OuterEnumDefaultValue
*/ */
@Test @Test
public void testOuterEnumDefaultValue() { void testOuterEnumDefaultValue() {
// TODO: test OuterEnumDefaultValue // TODO: test OuterEnumDefaultValue
} }

View File

@ -13,20 +13,19 @@
package org.openapitools.client.model; package org.openapitools.client.model;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for OuterEnumIntegerDefaultValue * Model tests for OuterEnumIntegerDefaultValue
*/ */
public class OuterEnumIntegerDefaultValueTest { class OuterEnumIntegerDefaultValueTest {
/** /**
* Model tests for OuterEnumIntegerDefaultValue * Model tests for OuterEnumIntegerDefaultValue
*/ */
@Test @Test
public void testOuterEnumIntegerDefaultValue() { void testOuterEnumIntegerDefaultValue() {
// TODO: test OuterEnumIntegerDefaultValue // TODO: test OuterEnumIntegerDefaultValue
} }

View File

@ -13,20 +13,19 @@
package org.openapitools.client.model; package org.openapitools.client.model;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for OuterEnumInteger * Model tests for OuterEnumInteger
*/ */
public class OuterEnumIntegerTest { class OuterEnumIntegerTest {
/** /**
* Model tests for OuterEnumInteger * Model tests for OuterEnumInteger
*/ */
@Test @Test
public void testOuterEnumInteger() { void testOuterEnumInteger() {
// TODO: test OuterEnumInteger // TODO: test OuterEnumInteger
} }

View File

@ -13,20 +13,19 @@
package org.openapitools.client.model; package org.openapitools.client.model;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for OuterEnum * Model tests for OuterEnum
*/ */
public class OuterEnumTest { class OuterEnumTest {
/** /**
* Model tests for OuterEnum * Model tests for OuterEnum
*/ */
@Test @Test
public void testOuterEnum() { void testOuterEnum() {
// TODO: test OuterEnum // TODO: test OuterEnum
} }

View File

@ -19,22 +19,21 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.openapitools.client.model.OuterEnumInteger; import org.openapitools.client.model.OuterEnumInteger;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for OuterObjectWithEnumProperty * Model tests for OuterObjectWithEnumProperty
*/ */
public class OuterObjectWithEnumPropertyTest { class OuterObjectWithEnumPropertyTest {
private final OuterObjectWithEnumProperty model = new OuterObjectWithEnumProperty(); private final OuterObjectWithEnumProperty model = new OuterObjectWithEnumProperty();
/** /**
* Model tests for OuterObjectWithEnumProperty * Model tests for OuterObjectWithEnumProperty
*/ */
@Test @Test
public void testOuterObjectWithEnumProperty() { void testOuterObjectWithEnumProperty() {
// TODO: test OuterObjectWithEnumProperty // TODO: test OuterObjectWithEnumProperty
} }
@ -42,7 +41,7 @@ public class OuterObjectWithEnumPropertyTest {
* Test the property 'value' * Test the property 'value'
*/ */
@Test @Test
public void valueTest() { void valueTest() {
// TODO: test value // TODO: test value
} }

View File

@ -25,21 +25,21 @@ import org.openapitools.jackson.nullable.JsonNullable;
import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonIgnore;
import org.openapitools.jackson.nullable.JsonNullable; import org.openapitools.jackson.nullable.JsonNullable;
import java.util.NoSuchElementException; import java.util.NoSuchElementException;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for ParentWithNullable * Model tests for ParentWithNullable
*/ */
public class ParentWithNullableTest { class ParentWithNullableTest {
private final ParentWithNullable model = new ParentWithNullable(); private final ParentWithNullable model = new ParentWithNullable();
/** /**
* Model tests for ParentWithNullable * Model tests for ParentWithNullable
*/ */
@Test @Test
public void testParentWithNullable() { void testParentWithNullable() {
// TODO: test ParentWithNullable // TODO: test ParentWithNullable
} }
@ -47,7 +47,7 @@ public class ParentWithNullableTest {
* Test the property 'type' * Test the property 'type'
*/ */
@Test @Test
public void typeTest() { void typeTest() {
// TODO: test type // TODO: test type
} }
@ -55,7 +55,7 @@ public class ParentWithNullableTest {
* Test the property 'nullableProperty' * Test the property 'nullableProperty'
*/ */
@Test @Test
public void nullablePropertyTest() { void nullablePropertyTest() {
// TODO: test nullableProperty // TODO: test nullableProperty
} }

View File

@ -20,27 +20,27 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import com.fasterxml.jackson.databind.annotation.JsonDeserialize; import com.fasterxml.jackson.databind.annotation.JsonDeserialize;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays;
import java.util.LinkedHashSet; import java.util.LinkedHashSet;
import java.util.List; import java.util.List;
import java.util.Set; import java.util.Set;
import org.openapitools.client.model.Category; import org.openapitools.client.model.Category;
import org.openapitools.client.model.Tag; import org.openapitools.client.model.Tag;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for Pet * Model tests for Pet
*/ */
public class PetTest { class PetTest {
private final Pet model = new Pet(); private final Pet model = new Pet();
/** /**
* Model tests for Pet * Model tests for Pet
*/ */
@Test @Test
public void testPet() { void testPet() {
// TODO: test Pet // TODO: test Pet
} }
@ -48,7 +48,7 @@ public class PetTest {
* Test the property 'id' * Test the property 'id'
*/ */
@Test @Test
public void idTest() { void idTest() {
// TODO: test id // TODO: test id
} }
@ -56,7 +56,7 @@ public class PetTest {
* Test the property 'category' * Test the property 'category'
*/ */
@Test @Test
public void categoryTest() { void categoryTest() {
// TODO: test category // TODO: test category
} }
@ -64,7 +64,7 @@ public class PetTest {
* Test the property 'name' * Test the property 'name'
*/ */
@Test @Test
public void nameTest() { void nameTest() {
// TODO: test name // TODO: test name
} }
@ -72,7 +72,7 @@ public class PetTest {
* Test the property 'photoUrls' * Test the property 'photoUrls'
*/ */
@Test @Test
public void photoUrlsTest() { void photoUrlsTest() {
// TODO: test photoUrls // TODO: test photoUrls
} }
@ -80,7 +80,7 @@ public class PetTest {
* Test the property 'tags' * Test the property 'tags'
*/ */
@Test @Test
public void tagsTest() { void tagsTest() {
// TODO: test tags // TODO: test tags
} }
@ -88,7 +88,7 @@ public class PetTest {
* Test the property 'status' * Test the property 'status'
*/ */
@Test @Test
public void statusTest() { void statusTest() {
// TODO: test status // TODO: test status
} }

View File

@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for ReadOnlyFirst * Model tests for ReadOnlyFirst
*/ */
public class ReadOnlyFirstTest { class ReadOnlyFirstTest {
private final ReadOnlyFirst model = new ReadOnlyFirst(); private final ReadOnlyFirst model = new ReadOnlyFirst();
/** /**
* Model tests for ReadOnlyFirst * Model tests for ReadOnlyFirst
*/ */
@Test @Test
public void testReadOnlyFirst() { void testReadOnlyFirst() {
// TODO: test ReadOnlyFirst // TODO: test ReadOnlyFirst
} }
@ -41,7 +40,7 @@ public class ReadOnlyFirstTest {
* Test the property 'bar' * Test the property 'bar'
*/ */
@Test @Test
public void barTest() { void barTest() {
// TODO: test bar // TODO: test bar
} }
@ -49,7 +48,7 @@ public class ReadOnlyFirstTest {
* Test the property 'baz' * Test the property 'baz'
*/ */
@Test @Test
public void bazTest() { void bazTest() {
// TODO: test baz // TODO: test baz
} }

View File

@ -13,20 +13,19 @@
package org.openapitools.client.model; package org.openapitools.client.model;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for SingleRefType * Model tests for SingleRefType
*/ */
public class SingleRefTypeTest { class SingleRefTypeTest {
/** /**
* Model tests for SingleRefType * Model tests for SingleRefType
*/ */
@Test @Test
public void testSingleRefType() { void testSingleRefType() {
// TODO: test SingleRefType // TODO: test SingleRefType
} }

View File

@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for SpecialModelName * Model tests for SpecialModelName
*/ */
public class SpecialModelNameTest { class SpecialModelNameTest {
private final SpecialModelName model = new SpecialModelName(); private final SpecialModelName model = new SpecialModelName();
/** /**
* Model tests for SpecialModelName * Model tests for SpecialModelName
*/ */
@Test @Test
public void testSpecialModelName() { void testSpecialModelName() {
// TODO: test SpecialModelName // TODO: test SpecialModelName
} }
@ -41,7 +40,7 @@ public class SpecialModelNameTest {
* Test the property '$specialPropertyName' * Test the property '$specialPropertyName'
*/ */
@Test @Test
public void $specialPropertyNameTest() { void $specialPropertyNameTest() {
// TODO: test $specialPropertyName // TODO: test $specialPropertyName
} }

View File

@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for Tag * Model tests for Tag
*/ */
public class TagTest { class TagTest {
private final Tag model = new Tag(); private final Tag model = new Tag();
/** /**
* Model tests for Tag * Model tests for Tag
*/ */
@Test @Test
public void testTag() { void testTag() {
// TODO: test Tag // TODO: test Tag
} }
@ -41,7 +40,7 @@ public class TagTest {
* Test the property 'id' * Test the property 'id'
*/ */
@Test @Test
public void idTest() { void idTest() {
// TODO: test id // TODO: test id
} }
@ -49,7 +48,7 @@ public class TagTest {
* Test the property 'name' * Test the property 'name'
*/ */
@Test @Test
public void nameTest() { void nameTest() {
// TODO: test name // TODO: test name
} }

View File

@ -20,21 +20,21 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map; import java.util.Map;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for TestInlineFreeformAdditionalPropertiesRequest * Model tests for TestInlineFreeformAdditionalPropertiesRequest
*/ */
public class TestInlineFreeformAdditionalPropertiesRequestTest { class TestInlineFreeformAdditionalPropertiesRequestTest {
private final TestInlineFreeformAdditionalPropertiesRequest model = new TestInlineFreeformAdditionalPropertiesRequest(); private final TestInlineFreeformAdditionalPropertiesRequest model = new TestInlineFreeformAdditionalPropertiesRequest();
/** /**
* Model tests for TestInlineFreeformAdditionalPropertiesRequest * Model tests for TestInlineFreeformAdditionalPropertiesRequest
*/ */
@Test @Test
public void testTestInlineFreeformAdditionalPropertiesRequest() { void testTestInlineFreeformAdditionalPropertiesRequest() {
// TODO: test TestInlineFreeformAdditionalPropertiesRequest // TODO: test TestInlineFreeformAdditionalPropertiesRequest
} }
@ -42,7 +42,7 @@ public class TestInlineFreeformAdditionalPropertiesRequestTest {
* Test the property 'someProperty' * Test the property 'someProperty'
*/ */
@Test @Test
public void somePropertyTest() { void somePropertyTest() {
// TODO: test someProperty // TODO: test someProperty
} }

View File

@ -18,22 +18,21 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for User * Model tests for User
*/ */
public class UserTest { class UserTest {
private final User model = new User(); private final User model = new User();
/** /**
* Model tests for User * Model tests for User
*/ */
@Test @Test
public void testUser() { void testUser() {
// TODO: test User // TODO: test User
} }
@ -41,7 +40,7 @@ public class UserTest {
* Test the property 'id' * Test the property 'id'
*/ */
@Test @Test
public void idTest() { void idTest() {
// TODO: test id // TODO: test id
} }
@ -49,7 +48,7 @@ public class UserTest {
* Test the property 'username' * Test the property 'username'
*/ */
@Test @Test
public void usernameTest() { void usernameTest() {
// TODO: test username // TODO: test username
} }
@ -57,7 +56,7 @@ public class UserTest {
* Test the property 'firstName' * Test the property 'firstName'
*/ */
@Test @Test
public void firstNameTest() { void firstNameTest() {
// TODO: test firstName // TODO: test firstName
} }
@ -65,7 +64,7 @@ public class UserTest {
* Test the property 'lastName' * Test the property 'lastName'
*/ */
@Test @Test
public void lastNameTest() { void lastNameTest() {
// TODO: test lastName // TODO: test lastName
} }
@ -73,7 +72,7 @@ public class UserTest {
* Test the property 'email' * Test the property 'email'
*/ */
@Test @Test
public void emailTest() { void emailTest() {
// TODO: test email // TODO: test email
} }
@ -81,7 +80,7 @@ public class UserTest {
* Test the property 'password' * Test the property 'password'
*/ */
@Test @Test
public void passwordTest() { void passwordTest() {
// TODO: test password // TODO: test password
} }
@ -89,7 +88,7 @@ public class UserTest {
* Test the property 'phone' * Test the property 'phone'
*/ */
@Test @Test
public void phoneTest() { void phoneTest() {
// TODO: test phone // TODO: test phone
} }
@ -97,7 +96,7 @@ public class UserTest {
* Test the property 'userStatus' * Test the property 'userStatus'
*/ */
@Test @Test
public void userStatusTest() { void userStatusTest() {
// TODO: test userStatus // TODO: test userStatus
} }

View File

@ -119,7 +119,7 @@ ext {
jackson_version = "2.13.4" jackson_version = "2.13.4"
jackson_databind_version = "2.13.4.2" jackson_databind_version = "2.13.4.2"
jackson_databind_nullable_version = "0.2.6" jackson_databind_nullable_version = "0.2.6"
junit_version = "4.13.2" junit_version = "5.10.2"
} }
dependencies { dependencies {
@ -134,5 +134,5 @@ dependencies {
implementation "org.openapitools:jackson-databind-nullable:$jackson_databind_nullable_version" implementation "org.openapitools:jackson-databind-nullable:$jackson_databind_nullable_version"
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version" implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version"
implementation "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version" implementation "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version"
testImplementation "junit:junit:$junit_version" testImplementation "org.junit.jupiter:junit-jupiter-api:$junit_version"
} }

View File

@ -36,7 +36,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version> <version>3.13.0</version>
<configuration> <configuration>
<source>1.8</source> <source>1.8</source>
<target>1.8</target> <target>1.8</target>
@ -45,7 +45,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId> <artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version> <version>3.3.1</version>
<executions> <executions>
<execution> <execution>
<id>attach-sources</id> <id>attach-sources</id>
@ -112,8 +112,8 @@
<!-- test dependencies --> <!-- test dependencies -->
<dependency> <dependency>
<groupId>junit</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>junit</artifactId> <artifactId>junit-jupiter-api</artifactId>
<version>${junit-version}</version> <version>${junit-version}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
@ -127,6 +127,6 @@
<jakarta-annotation-version>1.3.5</jakarta-annotation-version> <jakarta-annotation-version>1.3.5</jakarta-annotation-version>
<reactor-version>3.4.34</reactor-version> <reactor-version>3.4.34</reactor-version>
<reactor-netty-version>1.0.39</reactor-netty-version> <reactor-netty-version>1.0.39</reactor-netty-version>
<junit-version>4.13.2</junit-version> <junit-version>5.10.2</junit-version>
</properties> </properties>
</project> </project>

View File

@ -14,8 +14,9 @@
package org.openapitools.client.api; package org.openapitools.client.api;
import org.openapitools.client.model.ByteArrayObject; import org.openapitools.client.model.ByteArrayObject;
import org.junit.Test; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
@ -26,7 +27,7 @@ import java.util.stream.Collectors;
/** /**
* API tests for DefaultApi * API tests for DefaultApi
*/ */
@Ignore @Disabled
public class DefaultApiTest { public class DefaultApiTest {
private final DefaultApi api = new DefaultApi(); private final DefaultApi api = new DefaultApi();
@ -39,7 +40,8 @@ public class DefaultApiTest {
*/ */
@Test @Test
public void nullableArrayTestGetTest() { public void nullableArrayTestGetTest() {
List<ByteArrayObject> response = api.nullableArrayTestGet().collectList().block(); // uncomment below to test the function
//List<ByteArrayObject> response = api.nullableArrayTestGet().collectList().block();
// TODO: test validations // TODO: test validations
} }

View File

@ -23,22 +23,21 @@ import org.openapitools.jackson.nullable.JsonNullable;
import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonIgnore;
import org.openapitools.jackson.nullable.JsonNullable; import org.openapitools.jackson.nullable.JsonNullable;
import java.util.NoSuchElementException; import java.util.NoSuchElementException;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for ByteArrayObject * Model tests for ByteArrayObject
*/ */
public class ByteArrayObjectTest { class ByteArrayObjectTest {
private final ByteArrayObject model = new ByteArrayObject(); private final ByteArrayObject model = new ByteArrayObject();
/** /**
* Model tests for ByteArrayObject * Model tests for ByteArrayObject
*/ */
@Test @Test
public void testByteArrayObject() { void testByteArrayObject() {
// TODO: test ByteArrayObject // TODO: test ByteArrayObject
} }
@ -46,7 +45,7 @@ public class ByteArrayObjectTest {
* Test the property 'nullableArray' * Test the property 'nullableArray'
*/ */
@Test @Test
public void nullableArrayTest() { void nullableArrayTest() {
// TODO: test nullableArray // TODO: test nullableArray
} }
@ -54,7 +53,7 @@ public class ByteArrayObjectTest {
* Test the property 'normalArray' * Test the property 'normalArray'
*/ */
@Test @Test
public void normalArrayTest() { void normalArrayTest() {
// TODO: test normalArray // TODO: test normalArray
} }
@ -62,7 +61,7 @@ public class ByteArrayObjectTest {
* Test the property 'nullableString' * Test the property 'nullableString'
*/ */
@Test @Test
public void nullableStringTest() { void nullableStringTest() {
// TODO: test nullableString // TODO: test nullableString
} }
@ -70,7 +69,7 @@ public class ByteArrayObjectTest {
* Test the property 'stringField' * Test the property 'stringField'
*/ */
@Test @Test
public void stringFieldTest() { void stringFieldTest() {
// TODO: test stringField // TODO: test stringField
} }
@ -78,7 +77,7 @@ public class ByteArrayObjectTest {
* Test the property 'intField' * Test the property 'intField'
*/ */
@Test @Test
public void intFieldTest() { void intFieldTest() {
// TODO: test intField // TODO: test intField
} }

View File

@ -21,4 +21,3 @@
#docs/*.md #docs/*.md
# Then explicitly reverse the ignore rule for a single file: # Then explicitly reverse the ignore rule for a single file:
#!docs/README.md #!docs/README.md
#

View File

@ -120,7 +120,7 @@ ext {
jackson_version = "2.13.4" jackson_version = "2.13.4"
jackson_databind_version = "2.13.4.2" jackson_databind_version = "2.13.4.2"
jackson_databind_nullable_version = "0.2.6" jackson_databind_nullable_version = "0.2.6"
junit_version = "4.13.2" junit_version = "5.10.2"
} }
dependencies { dependencies {
@ -136,5 +136,5 @@ dependencies {
implementation "org.openapitools:jackson-databind-nullable:$jackson_databind_nullable_version" implementation "org.openapitools:jackson-databind-nullable:$jackson_databind_nullable_version"
implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version" implementation "com.fasterxml.jackson.datatype:jackson-datatype-jsr310:$jackson_version"
implementation "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version" implementation "jakarta.annotation:jakarta.annotation-api:$jakarta_annotation_version"
testImplementation "junit:junit:$junit_version" testImplementation "org.junit.jupiter:junit-jupiter-api:$junit_version"
} }

View File

@ -36,7 +36,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId> <artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version> <version>3.13.0</version>
<configuration> <configuration>
<source>1.8</source> <source>1.8</source>
<target>1.8</target> <target>1.8</target>
@ -45,7 +45,7 @@
<plugin> <plugin>
<groupId>org.apache.maven.plugins</groupId> <groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId> <artifactId>maven-source-plugin</artifactId>
<version>2.2.1</version> <version>3.3.1</version>
<executions> <executions>
<execution> <execution>
<id>attach-sources</id> <id>attach-sources</id>
@ -117,8 +117,8 @@
<!-- test dependencies --> <!-- test dependencies -->
<dependency> <dependency>
<groupId>junit</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>junit</artifactId> <artifactId>junit-jupiter-api</artifactId>
<version>${junit-version}</version> <version>${junit-version}</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
@ -133,6 +133,6 @@
<jakarta-annotation-version>1.3.5</jakarta-annotation-version> <jakarta-annotation-version>1.3.5</jakarta-annotation-version>
<reactor-version>3.4.34</reactor-version> <reactor-version>3.4.34</reactor-version>
<reactor-netty-version>1.0.39</reactor-netty-version> <reactor-netty-version>1.0.39</reactor-netty-version>
<junit-version>4.13.2</junit-version> <junit-version>5.10.2</junit-version>
</properties> </properties>
</project> </project>

View File

@ -14,8 +14,9 @@
package org.openapitools.client.api; package org.openapitools.client.api;
import org.openapitools.client.model.Client; import org.openapitools.client.model.Client;
import org.junit.Test; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
@ -26,7 +27,7 @@ import java.util.stream.Collectors;
/** /**
* API tests for AnotherFakeApi * API tests for AnotherFakeApi
*/ */
@Ignore @Disabled
public class AnotherFakeApiTest { public class AnotherFakeApiTest {
private final AnotherFakeApi api = new AnotherFakeApi(); private final AnotherFakeApi api = new AnotherFakeApi();
@ -39,8 +40,9 @@ public class AnotherFakeApiTest {
*/ */
@Test @Test
public void call123testSpecialTagsTest() { public void call123testSpecialTagsTest() {
Client client = null; // uncomment below to test the function
Client response = api.call123testSpecialTags(client).block(); //Client client = null;
//Client response = api.call123testSpecialTags(client).block();
// TODO: test validations // TODO: test validations
} }

View File

@ -14,8 +14,9 @@
package org.openapitools.client.api; package org.openapitools.client.api;
import org.openapitools.client.model.FooGetDefaultResponse; import org.openapitools.client.model.FooGetDefaultResponse;
import org.junit.Test; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
@ -26,7 +27,7 @@ import java.util.stream.Collectors;
/** /**
* API tests for DefaultApi * API tests for DefaultApi
*/ */
@Ignore @Disabled
public class DefaultApiTest { public class DefaultApiTest {
private final DefaultApi api = new DefaultApi(); private final DefaultApi api = new DefaultApi();
@ -39,7 +40,8 @@ public class DefaultApiTest {
*/ */
@Test @Test
public void fooGetTest() { public void fooGetTest() {
FooGetDefaultResponse response = api.fooGet().block(); // uncomment below to test the function
//FooGetDefaultResponse response = api.fooGet().block();
// TODO: test validations // TODO: test validations
} }

View File

@ -14,8 +14,10 @@
package org.openapitools.client.api; package org.openapitools.client.api;
import java.math.BigDecimal; import java.math.BigDecimal;
import org.openapitools.client.model.ChildWithNullable;
import org.openapitools.client.model.Client; import org.openapitools.client.model.Client;
import org.openapitools.client.model.EnumClass; import org.openapitools.client.model.EnumClass;
import org.openapitools.client.model.FakeBigDecimalMap200Response;
import java.io.File; import java.io.File;
import org.openapitools.client.model.FileSchemaTestClass; import org.openapitools.client.model.FileSchemaTestClass;
import org.openapitools.client.model.HealthCheckResult; import org.openapitools.client.model.HealthCheckResult;
@ -24,9 +26,11 @@ import java.time.OffsetDateTime;
import org.openapitools.client.model.OuterComposite; import org.openapitools.client.model.OuterComposite;
import org.openapitools.client.model.OuterObjectWithEnumProperty; import org.openapitools.client.model.OuterObjectWithEnumProperty;
import org.openapitools.client.model.Pet; import org.openapitools.client.model.Pet;
import org.openapitools.client.model.TestInlineFreeformAdditionalPropertiesRequest;
import org.openapitools.client.model.User; import org.openapitools.client.model.User;
import org.junit.Test; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
@ -37,12 +41,25 @@ import java.util.stream.Collectors;
/** /**
* API tests for FakeApi * API tests for FakeApi
*/ */
@Ignore @Disabled
public class FakeApiTest { public class FakeApiTest {
private final FakeApi api = new FakeApi(); private final FakeApi api = new FakeApi();
/**
*
*
* for Java apache and Java native, test toUrlQueryString for maps with BegDecimal keys
*/
@Test
public void fakeBigDecimalMapTest() {
// uncomment below to test the function
//FakeBigDecimalMap200Response response = api.fakeBigDecimalMap().block();
// TODO: test validations
}
/** /**
* Health check endpoint * Health check endpoint
* *
@ -50,7 +67,8 @@ public class FakeApiTest {
*/ */
@Test @Test
public void fakeHealthGetTest() { public void fakeHealthGetTest() {
HealthCheckResult response = api.fakeHealthGet().block(); // uncomment below to test the function
//HealthCheckResult response = api.fakeHealthGet().block();
// TODO: test validations // TODO: test validations
} }
@ -62,10 +80,11 @@ public class FakeApiTest {
*/ */
@Test @Test
public void fakeHttpSignatureTestTest() { public void fakeHttpSignatureTestTest() {
Pet pet = null; // uncomment below to test the function
String query1 = null; //Pet pet = null;
String header1 = null; //String query1 = null;
api.fakeHttpSignatureTest(pet, query1, header1).block(); //String header1 = null;
//api.fakeHttpSignatureTest(pet, query1, header1).block();
// TODO: test validations // TODO: test validations
} }
@ -77,8 +96,9 @@ public class FakeApiTest {
*/ */
@Test @Test
public void fakeOuterBooleanSerializeTest() { public void fakeOuterBooleanSerializeTest() {
Boolean body = null; // uncomment below to test the function
Boolean response = api.fakeOuterBooleanSerialize(body).block(); //Boolean body = null;
//Boolean response = api.fakeOuterBooleanSerialize(body).block();
// TODO: test validations // TODO: test validations
} }
@ -90,8 +110,9 @@ public class FakeApiTest {
*/ */
@Test @Test
public void fakeOuterCompositeSerializeTest() { public void fakeOuterCompositeSerializeTest() {
OuterComposite outerComposite = null; // uncomment below to test the function
OuterComposite response = api.fakeOuterCompositeSerialize(outerComposite).block(); //OuterComposite outerComposite = null;
//OuterComposite response = api.fakeOuterCompositeSerialize(outerComposite).block();
// TODO: test validations // TODO: test validations
} }
@ -103,8 +124,9 @@ public class FakeApiTest {
*/ */
@Test @Test
public void fakeOuterNumberSerializeTest() { public void fakeOuterNumberSerializeTest() {
BigDecimal body = null; // uncomment below to test the function
BigDecimal response = api.fakeOuterNumberSerialize(body).block(); //BigDecimal body = null;
//BigDecimal response = api.fakeOuterNumberSerialize(body).block();
// TODO: test validations // TODO: test validations
} }
@ -116,8 +138,9 @@ public class FakeApiTest {
*/ */
@Test @Test
public void fakeOuterStringSerializeTest() { public void fakeOuterStringSerializeTest() {
String body = null; // uncomment below to test the function
String response = api.fakeOuterStringSerialize(body).block(); //String body = null;
//String response = api.fakeOuterStringSerialize(body).block();
// TODO: test validations // TODO: test validations
} }
@ -129,8 +152,23 @@ public class FakeApiTest {
*/ */
@Test @Test
public void fakePropertyEnumIntegerSerializeTest() { public void fakePropertyEnumIntegerSerializeTest() {
OuterObjectWithEnumProperty outerObjectWithEnumProperty = null; // uncomment below to test the function
OuterObjectWithEnumProperty response = api.fakePropertyEnumIntegerSerialize(outerObjectWithEnumProperty).block(); //OuterObjectWithEnumProperty outerObjectWithEnumProperty = null;
//OuterObjectWithEnumProperty response = api.fakePropertyEnumIntegerSerialize(outerObjectWithEnumProperty).block();
// TODO: test validations
}
/**
* test referenced additionalProperties
*
*
*/
@Test
public void testAdditionalPropertiesReferenceTest() {
// uncomment below to test the function
//Map<String, Object> requestBody = null;
//api.testAdditionalPropertiesReference(requestBody).block();
// TODO: test validations // TODO: test validations
} }
@ -142,8 +180,9 @@ public class FakeApiTest {
*/ */
@Test @Test
public void testBodyWithBinaryTest() { public void testBodyWithBinaryTest() {
File body = null; // uncomment below to test the function
api.testBodyWithBinary(body).block(); //File body = null;
//api.testBodyWithBinary(body).block();
// TODO: test validations // TODO: test validations
} }
@ -155,8 +194,9 @@ public class FakeApiTest {
*/ */
@Test @Test
public void testBodyWithFileSchemaTest() { public void testBodyWithFileSchemaTest() {
FileSchemaTestClass fileSchemaTestClass = null; // uncomment below to test the function
api.testBodyWithFileSchema(fileSchemaTestClass).block(); //FileSchemaTestClass fileSchemaTestClass = null;
//api.testBodyWithFileSchema(fileSchemaTestClass).block();
// TODO: test validations // TODO: test validations
} }
@ -168,9 +208,10 @@ public class FakeApiTest {
*/ */
@Test @Test
public void testBodyWithQueryParamsTest() { public void testBodyWithQueryParamsTest() {
String query = null; // uncomment below to test the function
User user = null; //String query = null;
api.testBodyWithQueryParams(query, user).block(); //User user = null;
//api.testBodyWithQueryParams(query, user).block();
// TODO: test validations // TODO: test validations
} }
@ -182,8 +223,9 @@ public class FakeApiTest {
*/ */
@Test @Test
public void testClientModelTest() { public void testClientModelTest() {
Client client = null; // uncomment below to test the function
Client response = api.testClientModel(client).block(); //Client client = null;
//Client response = api.testClientModel(client).block();
// TODO: test validations // TODO: test validations
} }
@ -195,21 +237,22 @@ public class FakeApiTest {
*/ */
@Test @Test
public void testEndpointParametersTest() { public void testEndpointParametersTest() {
BigDecimal number = null; // uncomment below to test the function
Double _double = null; //BigDecimal number = null;
String patternWithoutDelimiter = null; //Double _double = null;
byte[] _byte = null; //String patternWithoutDelimiter = null;
Integer integer = null; //byte[] _byte = null;
Integer int32 = null; //Integer integer = null;
Long int64 = null; //Integer int32 = null;
Float _float = null; //Long int64 = null;
String string = null; //Float _float = null;
File binary = null; //String string = null;
LocalDate date = null; //File binary = null;
OffsetDateTime dateTime = null; //LocalDate date = null;
String password = null; //OffsetDateTime dateTime = null;
String paramCallback = null; //String password = null;
api.testEndpointParameters(number, _double, patternWithoutDelimiter, _byte, integer, int32, int64, _float, string, binary, date, dateTime, password, paramCallback).block(); //String paramCallback = null;
//api.testEndpointParameters(number, _double, patternWithoutDelimiter, _byte, integer, int32, int64, _float, string, binary, date, dateTime, password, paramCallback).block();
// TODO: test validations // TODO: test validations
} }
@ -221,16 +264,17 @@ public class FakeApiTest {
*/ */
@Test @Test
public void testEnumParametersTest() { public void testEnumParametersTest() {
List<String> enumHeaderStringArray = null; // uncomment below to test the function
String enumHeaderString = null; //List<String> enumHeaderStringArray = null;
List<String> enumQueryStringArray = null; //String enumHeaderString = null;
String enumQueryString = null; //List<String> enumQueryStringArray = null;
Integer enumQueryInteger = null; //String enumQueryString = null;
Double enumQueryDouble = null; //Integer enumQueryInteger = null;
List<EnumClass> enumQueryModelArray = null; //Double enumQueryDouble = null;
List<String> enumFormStringArray = null; //List<EnumClass> enumQueryModelArray = null;
String enumFormString = null; //List<String> enumFormStringArray = null;
api.testEnumParameters(enumHeaderStringArray, enumHeaderString, enumQueryStringArray, enumQueryString, enumQueryInteger, enumQueryDouble, enumQueryModelArray, enumFormStringArray, enumFormString).block(); //String enumFormString = null;
//api.testEnumParameters(enumHeaderStringArray, enumHeaderString, enumQueryStringArray, enumQueryString, enumQueryInteger, enumQueryDouble, enumQueryModelArray, enumFormStringArray, enumFormString).block();
// TODO: test validations // TODO: test validations
} }
@ -242,13 +286,14 @@ public class FakeApiTest {
*/ */
@Test @Test
public void testGroupParametersTest() { public void testGroupParametersTest() {
Integer requiredStringGroup = null; // uncomment below to test the function
Boolean requiredBooleanGroup = null; //Integer requiredStringGroup = null;
Long requiredInt64Group = null; //Boolean requiredBooleanGroup = null;
Integer stringGroup = null; //Long requiredInt64Group = null;
Boolean booleanGroup = null; //Integer stringGroup = null;
Long int64Group = null; //Boolean booleanGroup = null;
api.testGroupParameters(requiredStringGroup, requiredBooleanGroup, requiredInt64Group, stringGroup, booleanGroup, int64Group).block(); //Long int64Group = null;
//api.testGroupParameters(requiredStringGroup, requiredBooleanGroup, requiredInt64Group, stringGroup, booleanGroup, int64Group).block();
// TODO: test validations // TODO: test validations
} }
@ -260,8 +305,23 @@ public class FakeApiTest {
*/ */
@Test @Test
public void testInlineAdditionalPropertiesTest() { public void testInlineAdditionalPropertiesTest() {
Map<String, String> requestBody = null; // uncomment below to test the function
api.testInlineAdditionalProperties(requestBody).block(); //Map<String, String> requestBody = null;
//api.testInlineAdditionalProperties(requestBody).block();
// TODO: test validations
}
/**
* test inline free-form additionalProperties
*
*
*/
@Test
public void testInlineFreeformAdditionalPropertiesTest() {
// uncomment below to test the function
//TestInlineFreeformAdditionalPropertiesRequest testInlineFreeformAdditionalPropertiesRequest = null;
//api.testInlineFreeformAdditionalProperties(testInlineFreeformAdditionalPropertiesRequest).block();
// TODO: test validations // TODO: test validations
} }
@ -273,9 +333,24 @@ public class FakeApiTest {
*/ */
@Test @Test
public void testJsonFormDataTest() { public void testJsonFormDataTest() {
String param = null; // uncomment below to test the function
String param2 = null; //String param = null;
api.testJsonFormData(param, param2).block(); //String param2 = null;
//api.testJsonFormData(param, param2).block();
// TODO: test validations
}
/**
* test nullable parent property
*
*
*/
@Test
public void testNullableTest() {
// uncomment below to test the function
//ChildWithNullable childWithNullable = null;
//api.testNullable(childWithNullable).block();
// TODO: test validations // TODO: test validations
} }
@ -287,14 +362,29 @@ public class FakeApiTest {
*/ */
@Test @Test
public void testQueryParameterCollectionFormatTest() { public void testQueryParameterCollectionFormatTest() {
List<String> pipe = null; // uncomment below to test the function
List<String> ioutil = null; //List<String> pipe = null;
List<String> http = null; //List<String> ioutil = null;
List<String> url = null; //List<String> http = null;
List<String> context = null; //List<String> url = null;
String allowEmpty = null; //List<String> context = null;
Map<String, String> language = null; //String allowEmpty = null;
api.testQueryParameterCollectionFormat(pipe, ioutil, http, url, context, allowEmpty, language).block(); //Map<String, String> language = null;
//api.testQueryParameterCollectionFormat(pipe, ioutil, http, url, context, allowEmpty, language).block();
// TODO: test validations
}
/**
* test referenced string map
*
*
*/
@Test
public void testStringMapReferenceTest() {
// uncomment below to test the function
//Map<String, String> requestBody = null;
//api.testStringMapReference(requestBody).block();
// TODO: test validations // TODO: test validations
} }

View File

@ -14,8 +14,9 @@
package org.openapitools.client.api; package org.openapitools.client.api;
import org.openapitools.client.model.Client; import org.openapitools.client.model.Client;
import org.junit.Test; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
@ -26,7 +27,7 @@ import java.util.stream.Collectors;
/** /**
* API tests for FakeClassnameTags123Api * API tests for FakeClassnameTags123Api
*/ */
@Ignore @Disabled
public class FakeClassnameTags123ApiTest { public class FakeClassnameTags123ApiTest {
private final FakeClassnameTags123Api api = new FakeClassnameTags123Api(); private final FakeClassnameTags123Api api = new FakeClassnameTags123Api();
@ -39,8 +40,9 @@ public class FakeClassnameTags123ApiTest {
*/ */
@Test @Test
public void testClassnameTest() { public void testClassnameTest() {
Client client = null; // uncomment below to test the function
Client response = api.testClassname(client).block(); //Client client = null;
//Client response = api.testClassname(client).block();
// TODO: test validations // TODO: test validations
} }

View File

@ -17,8 +17,9 @@ import java.io.File;
import org.openapitools.client.model.ModelApiResponse; import org.openapitools.client.model.ModelApiResponse;
import org.openapitools.client.model.Pet; import org.openapitools.client.model.Pet;
import java.util.Set; import java.util.Set;
import org.junit.Test; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
@ -29,7 +30,7 @@ import java.util.stream.Collectors;
/** /**
* API tests for PetApi * API tests for PetApi
*/ */
@Ignore @Disabled
public class PetApiTest { public class PetApiTest {
private final PetApi api = new PetApi(); private final PetApi api = new PetApi();
@ -42,8 +43,9 @@ public class PetApiTest {
*/ */
@Test @Test
public void addPetTest() { public void addPetTest() {
Pet pet = null; // uncomment below to test the function
api.addPet(pet).block(); //Pet pet = null;
//api.addPet(pet).block();
// TODO: test validations // TODO: test validations
} }
@ -55,9 +57,10 @@ public class PetApiTest {
*/ */
@Test @Test
public void deletePetTest() { public void deletePetTest() {
Long petId = null; // uncomment below to test the function
String apiKey = null; //Long petId = null;
api.deletePet(petId, apiKey).block(); //String apiKey = null;
//api.deletePet(petId, apiKey).block();
// TODO: test validations // TODO: test validations
} }
@ -69,8 +72,9 @@ public class PetApiTest {
*/ */
@Test @Test
public void findPetsByStatusTest() { public void findPetsByStatusTest() {
List<String> status = null; // uncomment below to test the function
List<Pet> response = api.findPetsByStatus(status); //List<String> status = null;
//List<Pet> response = api.findPetsByStatus(status);
// TODO: test validations // TODO: test validations
} }
@ -82,8 +86,9 @@ public class PetApiTest {
*/ */
@Test @Test
public void findPetsByTagsTest() { public void findPetsByTagsTest() {
Set<String> tags = null; // uncomment below to test the function
Set<Pet> response = api.findPetsByTags(tags); //Set<String> tags = null;
//Set<Pet> response = api.findPetsByTags(tags);
// TODO: test validations // TODO: test validations
} }
@ -95,8 +100,9 @@ public class PetApiTest {
*/ */
@Test @Test
public void getPetByIdTest() { public void getPetByIdTest() {
Long petId = null; // uncomment below to test the function
Pet response = api.getPetById(petId); //Long petId = null;
//Pet response = api.getPetById(petId);
// TODO: test validations // TODO: test validations
} }
@ -108,8 +114,9 @@ public class PetApiTest {
*/ */
@Test @Test
public void updatePetTest() { public void updatePetTest() {
Pet pet = null; // uncomment below to test the function
api.updatePet(pet); //Pet pet = null;
//api.updatePet(pet);
// TODO: test validations // TODO: test validations
} }
@ -121,10 +128,11 @@ public class PetApiTest {
*/ */
@Test @Test
public void updatePetWithFormTest() { public void updatePetWithFormTest() {
Long petId = null; // uncomment below to test the function
String name = null; //Long petId = null;
String status = null; //String name = null;
api.updatePetWithForm(petId, name, status).block(); //String status = null;
//api.updatePetWithForm(petId, name, status).block();
// TODO: test validations // TODO: test validations
} }
@ -136,10 +144,11 @@ public class PetApiTest {
*/ */
@Test @Test
public void uploadFileTest() { public void uploadFileTest() {
Long petId = null; // uncomment below to test the function
String additionalMetadata = null; //Long petId = null;
File _file = null; //String additionalMetadata = null;
ModelApiResponse response = api.uploadFile(petId, additionalMetadata, _file).block(); //File _file = null;
//ModelApiResponse response = api.uploadFile(petId, additionalMetadata, _file).block();
// TODO: test validations // TODO: test validations
} }
@ -151,10 +160,11 @@ public class PetApiTest {
*/ */
@Test @Test
public void uploadFileWithRequiredFileTest() { public void uploadFileWithRequiredFileTest() {
Long petId = null; // uncomment below to test the function
File requiredFile = null; //Long petId = null;
String additionalMetadata = null; //File requiredFile = null;
ModelApiResponse response = api.uploadFileWithRequiredFile(petId, requiredFile, additionalMetadata).block(); //String additionalMetadata = null;
//ModelApiResponse response = api.uploadFileWithRequiredFile(petId, requiredFile, additionalMetadata).block();
// TODO: test validations // TODO: test validations
} }

View File

@ -14,8 +14,9 @@
package org.openapitools.client.api; package org.openapitools.client.api;
import org.openapitools.client.model.Order; import org.openapitools.client.model.Order;
import org.junit.Test; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
@ -26,7 +27,7 @@ import java.util.stream.Collectors;
/** /**
* API tests for StoreApi * API tests for StoreApi
*/ */
@Ignore @Disabled
public class StoreApiTest { public class StoreApiTest {
private final StoreApi api = new StoreApi(); private final StoreApi api = new StoreApi();
@ -39,8 +40,9 @@ public class StoreApiTest {
*/ */
@Test @Test
public void deleteOrderTest() { public void deleteOrderTest() {
String orderId = null; // uncomment below to test the function
api.deleteOrder(orderId).block(); //String orderId = null;
//api.deleteOrder(orderId).block();
// TODO: test validations // TODO: test validations
} }
@ -52,7 +54,8 @@ public class StoreApiTest {
*/ */
@Test @Test
public void getInventoryTest() { public void getInventoryTest() {
Map<String, Integer> response = api.getInventory().block(); // uncomment below to test the function
//Map<String, Integer> response = api.getInventory().block();
// TODO: test validations // TODO: test validations
} }
@ -64,8 +67,9 @@ public class StoreApiTest {
*/ */
@Test @Test
public void getOrderByIdTest() { public void getOrderByIdTest() {
Long orderId = null; // uncomment below to test the function
Order response = api.getOrderById(orderId).block(); //Long orderId = null;
//Order response = api.getOrderById(orderId).block();
// TODO: test validations // TODO: test validations
} }
@ -77,8 +81,9 @@ public class StoreApiTest {
*/ */
@Test @Test
public void placeOrderTest() { public void placeOrderTest() {
Order order = null; // uncomment below to test the function
Order response = api.placeOrder(order).block(); //Order order = null;
//Order response = api.placeOrder(order).block();
// TODO: test validations // TODO: test validations
} }

View File

@ -15,8 +15,9 @@ package org.openapitools.client.api;
import java.time.OffsetDateTime; import java.time.OffsetDateTime;
import org.openapitools.client.model.User; import org.openapitools.client.model.User;
import org.junit.Test; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.HashMap; import java.util.HashMap;
@ -27,7 +28,7 @@ import java.util.stream.Collectors;
/** /**
* API tests for UserApi * API tests for UserApi
*/ */
@Ignore @Disabled
public class UserApiTest { public class UserApiTest {
private final UserApi api = new UserApi(); private final UserApi api = new UserApi();
@ -40,8 +41,9 @@ public class UserApiTest {
*/ */
@Test @Test
public void createUserTest() { public void createUserTest() {
User user = null; // uncomment below to test the function
api.createUser(user).block(); //User user = null;
//api.createUser(user).block();
// TODO: test validations // TODO: test validations
} }
@ -53,8 +55,9 @@ public class UserApiTest {
*/ */
@Test @Test
public void createUsersWithArrayInputTest() { public void createUsersWithArrayInputTest() {
List<User> user = null; // uncomment below to test the function
api.createUsersWithArrayInput(user).block(); //List<User> user = null;
//api.createUsersWithArrayInput(user).block();
// TODO: test validations // TODO: test validations
} }
@ -66,8 +69,9 @@ public class UserApiTest {
*/ */
@Test @Test
public void createUsersWithListInputTest() { public void createUsersWithListInputTest() {
List<User> user = null; // uncomment below to test the function
api.createUsersWithListInput(user).block(); //List<User> user = null;
//api.createUsersWithListInput(user).block();
// TODO: test validations // TODO: test validations
} }
@ -79,8 +83,9 @@ public class UserApiTest {
*/ */
@Test @Test
public void deleteUserTest() { public void deleteUserTest() {
String username = null; // uncomment below to test the function
api.deleteUser(username).block(); //String username = null;
//api.deleteUser(username).block();
// TODO: test validations // TODO: test validations
} }
@ -92,8 +97,9 @@ public class UserApiTest {
*/ */
@Test @Test
public void getUserByNameTest() { public void getUserByNameTest() {
String username = null; // uncomment below to test the function
User response = api.getUserByName(username).block(); //String username = null;
//User response = api.getUserByName(username).block();
// TODO: test validations // TODO: test validations
} }
@ -105,9 +111,10 @@ public class UserApiTest {
*/ */
@Test @Test
public void loginUserTest() { public void loginUserTest() {
String username = null; // uncomment below to test the function
String password = null; //String username = null;
String response = api.loginUser(username, password).block(); //String password = null;
//String response = api.loginUser(username, password).block();
// TODO: test validations // TODO: test validations
} }
@ -119,7 +126,8 @@ public class UserApiTest {
*/ */
@Test @Test
public void logoutUserTest() { public void logoutUserTest() {
api.logoutUser().block(); // uncomment below to test the function
//api.logoutUser().block();
// TODO: test validations // TODO: test validations
} }
@ -131,9 +139,10 @@ public class UserApiTest {
*/ */
@Test @Test
public void updateUserTest() { public void updateUserTest() {
String username = null; // uncomment below to test the function
User user = null; //String username = null;
api.updateUser(username, user).block(); //User user = null;
//api.updateUser(username, user).block();
// TODO: test validations // TODO: test validations
} }

View File

@ -18,24 +18,24 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map; import java.util.Map;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for AdditionalPropertiesClass * Model tests for AdditionalPropertiesClass
*/ */
public class AdditionalPropertiesClassTest { class AdditionalPropertiesClassTest {
private final AdditionalPropertiesClass model = new AdditionalPropertiesClass(); private final AdditionalPropertiesClass model = new AdditionalPropertiesClass();
/** /**
* Model tests for AdditionalPropertiesClass * Model tests for AdditionalPropertiesClass
*/ */
@Test @Test
public void testAdditionalPropertiesClass() { void testAdditionalPropertiesClass() {
// TODO: test AdditionalPropertiesClass // TODO: test AdditionalPropertiesClass
} }
@ -43,7 +43,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapProperty' * Test the property 'mapProperty'
*/ */
@Test @Test
public void mapPropertyTest() { void mapPropertyTest() {
// TODO: test mapProperty // TODO: test mapProperty
} }
@ -51,7 +51,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapOfMapProperty' * Test the property 'mapOfMapProperty'
*/ */
@Test @Test
public void mapOfMapPropertyTest() { void mapOfMapPropertyTest() {
// TODO: test mapOfMapProperty // TODO: test mapOfMapProperty
} }

View File

@ -18,23 +18,23 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.v3.oas.annotations.media.Schema;
import org.openapitools.client.model.SingleRefType; import org.openapitools.client.model.SingleRefType;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for AllOfWithSingleRef * Model tests for AllOfWithSingleRef
*/ */
public class AllOfWithSingleRefTest { class AllOfWithSingleRefTest {
private final AllOfWithSingleRef model = new AllOfWithSingleRef(); private final AllOfWithSingleRef model = new AllOfWithSingleRef();
/** /**
* Model tests for AllOfWithSingleRef * Model tests for AllOfWithSingleRef
*/ */
@Test @Test
public void testAllOfWithSingleRef() { void testAllOfWithSingleRef() {
// TODO: test AllOfWithSingleRef // TODO: test AllOfWithSingleRef
} }
@ -42,7 +42,7 @@ public class AllOfWithSingleRefTest {
* Test the property 'username' * Test the property 'username'
*/ */
@Test @Test
public void usernameTest() { void usernameTest() {
// TODO: test username // TODO: test username
} }
@ -50,7 +50,7 @@ public class AllOfWithSingleRefTest {
* Test the property 'singleRefType' * Test the property 'singleRefType'
*/ */
@Test @Test
public void singleRefTypeTest() { void singleRefTypeTest() {
// TODO: test singleRefType // TODO: test singleRefType
} }

View File

@ -21,22 +21,22 @@ import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo; import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.junit.Assert; import io.swagger.v3.oas.annotations.media.Schema;
import org.junit.Ignore; import org.junit.jupiter.api.Assertions;
import org.junit.Test; import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/** /**
* Model tests for Animal * Model tests for Animal
*/ */
public class AnimalTest { class AnimalTest {
private final Animal model = new Animal(); private final Animal model = new Animal();
/** /**
* Model tests for Animal * Model tests for Animal
*/ */
@Test @Test
public void testAnimal() { void testAnimal() {
// TODO: test Animal // TODO: test Animal
} }
@ -44,7 +44,7 @@ public class AnimalTest {
* Test the property 'className' * Test the property 'className'
*/ */
@Test @Test
public void classNameTest() { void classNameTest() {
// TODO: test className // TODO: test className
} }
@ -52,7 +52,7 @@ public class AnimalTest {
* Test the property 'color' * Test the property 'color'
*/ */
@Test @Test
public void colorTest() { void colorTest() {
// TODO: test color // TODO: test color
} }

View File

@ -18,25 +18,26 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.v3.oas.annotations.media.Schema;
import java.math.BigDecimal; import java.math.BigDecimal;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays;
import java.util.List; import java.util.List;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for ArrayOfArrayOfNumberOnly * Model tests for ArrayOfArrayOfNumberOnly
*/ */
public class ArrayOfArrayOfNumberOnlyTest { class ArrayOfArrayOfNumberOnlyTest {
private final ArrayOfArrayOfNumberOnly model = new ArrayOfArrayOfNumberOnly(); private final ArrayOfArrayOfNumberOnly model = new ArrayOfArrayOfNumberOnly();
/** /**
* Model tests for ArrayOfArrayOfNumberOnly * Model tests for ArrayOfArrayOfNumberOnly
*/ */
@Test @Test
public void testArrayOfArrayOfNumberOnly() { void testArrayOfArrayOfNumberOnly() {
// TODO: test ArrayOfArrayOfNumberOnly // TODO: test ArrayOfArrayOfNumberOnly
} }
@ -44,7 +45,7 @@ public class ArrayOfArrayOfNumberOnlyTest {
* Test the property 'arrayArrayNumber' * Test the property 'arrayArrayNumber'
*/ */
@Test @Test
public void arrayArrayNumberTest() { void arrayArrayNumberTest() {
// TODO: test arrayArrayNumber // TODO: test arrayArrayNumber
} }

View File

@ -18,25 +18,26 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.v3.oas.annotations.media.Schema;
import java.math.BigDecimal; import java.math.BigDecimal;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays;
import java.util.List; import java.util.List;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for ArrayOfNumberOnly * Model tests for ArrayOfNumberOnly
*/ */
public class ArrayOfNumberOnlyTest { class ArrayOfNumberOnlyTest {
private final ArrayOfNumberOnly model = new ArrayOfNumberOnly(); private final ArrayOfNumberOnly model = new ArrayOfNumberOnly();
/** /**
* Model tests for ArrayOfNumberOnly * Model tests for ArrayOfNumberOnly
*/ */
@Test @Test
public void testArrayOfNumberOnly() { void testArrayOfNumberOnly() {
// TODO: test ArrayOfNumberOnly // TODO: test ArrayOfNumberOnly
} }
@ -44,7 +45,7 @@ public class ArrayOfNumberOnlyTest {
* Test the property 'arrayNumber' * Test the property 'arrayNumber'
*/ */
@Test @Test
public void arrayNumberTest() { void arrayNumberTest() {
// TODO: test arrayNumber // TODO: test arrayNumber
} }

View File

@ -18,25 +18,26 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays;
import java.util.List; import java.util.List;
import org.openapitools.client.model.ReadOnlyFirst; import org.openapitools.client.model.ReadOnlyFirst;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for ArrayTest * Model tests for ArrayTest
*/ */
public class ArrayTestTest { class ArrayTestTest {
private final ArrayTest model = new ArrayTest(); private final ArrayTest model = new ArrayTest();
/** /**
* Model tests for ArrayTest * Model tests for ArrayTest
*/ */
@Test @Test
public void testArrayTest() { void testArrayTest() {
// TODO: test ArrayTest // TODO: test ArrayTest
} }
@ -44,7 +45,7 @@ public class ArrayTestTest {
* Test the property 'arrayOfString' * Test the property 'arrayOfString'
*/ */
@Test @Test
public void arrayOfStringTest() { void arrayOfStringTest() {
// TODO: test arrayOfString // TODO: test arrayOfString
} }
@ -52,7 +53,7 @@ public class ArrayTestTest {
* Test the property 'arrayArrayOfInteger' * Test the property 'arrayArrayOfInteger'
*/ */
@Test @Test
public void arrayArrayOfIntegerTest() { void arrayArrayOfIntegerTest() {
// TODO: test arrayArrayOfInteger // TODO: test arrayArrayOfInteger
} }
@ -60,7 +61,7 @@ public class ArrayTestTest {
* Test the property 'arrayArrayOfModel' * Test the property 'arrayArrayOfModel'
*/ */
@Test @Test
public void arrayArrayOfModelTest() { void arrayArrayOfModelTest() {
// TODO: test arrayArrayOfModel // TODO: test arrayArrayOfModel
} }

View File

@ -18,22 +18,22 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.junit.Assert; import io.swagger.v3.oas.annotations.media.Schema;
import org.junit.Ignore; import org.junit.jupiter.api.Assertions;
import org.junit.Test; import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/** /**
* Model tests for Capitalization * Model tests for Capitalization
*/ */
public class CapitalizationTest { class CapitalizationTest {
private final Capitalization model = new Capitalization(); private final Capitalization model = new Capitalization();
/** /**
* Model tests for Capitalization * Model tests for Capitalization
*/ */
@Test @Test
public void testCapitalization() { void testCapitalization() {
// TODO: test Capitalization // TODO: test Capitalization
} }
@ -41,7 +41,7 @@ public class CapitalizationTest {
* Test the property 'smallCamel' * Test the property 'smallCamel'
*/ */
@Test @Test
public void smallCamelTest() { void smallCamelTest() {
// TODO: test smallCamel // TODO: test smallCamel
} }
@ -49,7 +49,7 @@ public class CapitalizationTest {
* Test the property 'capitalCamel' * Test the property 'capitalCamel'
*/ */
@Test @Test
public void capitalCamelTest() { void capitalCamelTest() {
// TODO: test capitalCamel // TODO: test capitalCamel
} }
@ -57,7 +57,7 @@ public class CapitalizationTest {
* Test the property 'smallSnake' * Test the property 'smallSnake'
*/ */
@Test @Test
public void smallSnakeTest() { void smallSnakeTest() {
// TODO: test smallSnake // TODO: test smallSnake
} }
@ -65,7 +65,7 @@ public class CapitalizationTest {
* Test the property 'capitalSnake' * Test the property 'capitalSnake'
*/ */
@Test @Test
public void capitalSnakeTest() { void capitalSnakeTest() {
// TODO: test capitalSnake // TODO: test capitalSnake
} }
@ -73,7 +73,7 @@ public class CapitalizationTest {
* Test the property 'scAETHFlowPoints' * Test the property 'scAETHFlowPoints'
*/ */
@Test @Test
public void scAETHFlowPointsTest() { void scAETHFlowPointsTest() {
// TODO: test scAETHFlowPoints // TODO: test scAETHFlowPoints
} }
@ -81,7 +81,7 @@ public class CapitalizationTest {
* Test the property 'ATT_NAME' * Test the property 'ATT_NAME'
*/ */
@Test @Test
public void ATT_NAMETest() { void ATT_NAMETest() {
// TODO: test ATT_NAME // TODO: test ATT_NAME
} }

View File

@ -21,23 +21,23 @@ import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo; import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.v3.oas.annotations.media.Schema;
import org.openapitools.client.model.Animal; import org.openapitools.client.model.Animal;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for Cat * Model tests for Cat
*/ */
public class CatTest { class CatTest {
private final Cat model = new Cat(); private final Cat model = new Cat();
/** /**
* Model tests for Cat * Model tests for Cat
*/ */
@Test @Test
public void testCat() { void testCat() {
// TODO: test Cat // TODO: test Cat
} }
@ -45,7 +45,7 @@ public class CatTest {
* Test the property 'className' * Test the property 'className'
*/ */
@Test @Test
public void classNameTest() { void classNameTest() {
// TODO: test className // TODO: test className
} }
@ -53,7 +53,7 @@ public class CatTest {
* Test the property 'color' * Test the property 'color'
*/ */
@Test @Test
public void colorTest() { void colorTest() {
// TODO: test color // TODO: test color
} }
@ -61,7 +61,7 @@ public class CatTest {
* Test the property 'declawed' * Test the property 'declawed'
*/ */
@Test @Test
public void declawedTest() { void declawedTest() {
// TODO: test declawed // TODO: test declawed
} }

View File

@ -18,22 +18,22 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.junit.Assert; import io.swagger.v3.oas.annotations.media.Schema;
import org.junit.Ignore; import org.junit.jupiter.api.Assertions;
import org.junit.Test; import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/** /**
* Model tests for Category * Model tests for Category
*/ */
public class CategoryTest { class CategoryTest {
private final Category model = new Category(); private final Category model = new Category();
/** /**
* Model tests for Category * Model tests for Category
*/ */
@Test @Test
public void testCategory() { void testCategory() {
// TODO: test Category // TODO: test Category
} }
@ -41,7 +41,7 @@ public class CategoryTest {
* Test the property 'id' * Test the property 'id'
*/ */
@Test @Test
public void idTest() { void idTest() {
// TODO: test id // TODO: test id
} }
@ -49,7 +49,7 @@ public class CategoryTest {
* Test the property 'name' * Test the property 'name'
*/ */
@Test @Test
public void nameTest() { void nameTest() {
// TODO: test name // TODO: test name
} }

View File

@ -24,21 +24,21 @@ import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.v3.oas.annotations.media.Schema; import io.swagger.v3.oas.annotations.media.Schema;
import org.openapitools.client.model.ParentWithNullable; import org.openapitools.client.model.ParentWithNullable;
import org.openapitools.jackson.nullable.JsonNullable; import org.openapitools.jackson.nullable.JsonNullable;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for ChildWithNullable * Model tests for ChildWithNullable
*/ */
public class ChildWithNullableTest { class ChildWithNullableTest {
private final ChildWithNullable model = new ChildWithNullable(); private final ChildWithNullable model = new ChildWithNullable();
/** /**
* Model tests for ChildWithNullable * Model tests for ChildWithNullable
*/ */
@Test @Test
public void testChildWithNullable() { void testChildWithNullable() {
// TODO: test ChildWithNullable // TODO: test ChildWithNullable
} }
@ -46,7 +46,7 @@ public class ChildWithNullableTest {
* Test the property 'type' * Test the property 'type'
*/ */
@Test @Test
public void typeTest() { void typeTest() {
// TODO: test type // TODO: test type
} }
@ -54,7 +54,7 @@ public class ChildWithNullableTest {
* Test the property 'nullableProperty' * Test the property 'nullableProperty'
*/ */
@Test @Test
public void nullablePropertyTest() { void nullablePropertyTest() {
// TODO: test nullableProperty // TODO: test nullableProperty
} }
@ -62,7 +62,7 @@ public class ChildWithNullableTest {
* Test the property 'otherProperty' * Test the property 'otherProperty'
*/ */
@Test @Test
public void otherPropertyTest() { void otherPropertyTest() {
// TODO: test otherProperty // TODO: test otherProperty
} }

View File

@ -19,22 +19,21 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.v3.oas.annotations.media.Schema; import io.swagger.v3.oas.annotations.media.Schema;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for ClassModel * Model tests for ClassModel
*/ */
public class ClassModelTest { class ClassModelTest {
private final ClassModel model = new ClassModel(); private final ClassModel model = new ClassModel();
/** /**
* Model tests for ClassModel * Model tests for ClassModel
*/ */
@Test @Test
public void testClassModel() { void testClassModel() {
// TODO: test ClassModel // TODO: test ClassModel
} }
@ -42,7 +41,7 @@ public class ClassModelTest {
* Test the property 'propertyClass' * Test the property 'propertyClass'
*/ */
@Test @Test
public void propertyClassTest() { void propertyClassTest() {
// TODO: test propertyClass // TODO: test propertyClass
} }

View File

@ -18,22 +18,22 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.junit.Assert; import io.swagger.v3.oas.annotations.media.Schema;
import org.junit.Ignore; import org.junit.jupiter.api.Assertions;
import org.junit.Test; import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/** /**
* Model tests for Client * Model tests for Client
*/ */
public class ClientTest { class ClientTest {
private final Client model = new Client(); private final Client model = new Client();
/** /**
* Model tests for Client * Model tests for Client
*/ */
@Test @Test
public void testClient() { void testClient() {
// TODO: test Client // TODO: test Client
} }
@ -41,7 +41,7 @@ public class ClientTest {
* Test the property 'client' * Test the property 'client'
*/ */
@Test @Test
public void clientTest() { void clientTest() {
// TODO: test client // TODO: test client
} }

View File

@ -18,22 +18,22 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import org.junit.Assert; import io.swagger.v3.oas.annotations.media.Schema;
import org.junit.Ignore; import org.junit.jupiter.api.Assertions;
import org.junit.Test; import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/** /**
* Model tests for DeprecatedObject * Model tests for DeprecatedObject
*/ */
public class DeprecatedObjectTest { class DeprecatedObjectTest {
private final DeprecatedObject model = new DeprecatedObject(); private final DeprecatedObject model = new DeprecatedObject();
/** /**
* Model tests for DeprecatedObject * Model tests for DeprecatedObject
*/ */
@Test @Test
public void testDeprecatedObject() { void testDeprecatedObject() {
// TODO: test DeprecatedObject // TODO: test DeprecatedObject
} }
@ -41,7 +41,7 @@ public class DeprecatedObjectTest {
* Test the property 'name' * Test the property 'name'
*/ */
@Test @Test
public void nameTest() { void nameTest() {
// TODO: test name // TODO: test name
} }

View File

@ -21,23 +21,23 @@ import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo; import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.v3.oas.annotations.media.Schema;
import org.openapitools.client.model.Animal; import org.openapitools.client.model.Animal;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for Dog * Model tests for Dog
*/ */
public class DogTest { class DogTest {
private final Dog model = new Dog(); private final Dog model = new Dog();
/** /**
* Model tests for Dog * Model tests for Dog
*/ */
@Test @Test
public void testDog() { void testDog() {
// TODO: test Dog // TODO: test Dog
} }
@ -45,7 +45,7 @@ public class DogTest {
* Test the property 'className' * Test the property 'className'
*/ */
@Test @Test
public void classNameTest() { void classNameTest() {
// TODO: test className // TODO: test className
} }
@ -53,7 +53,7 @@ public class DogTest {
* Test the property 'color' * Test the property 'color'
*/ */
@Test @Test
public void colorTest() { void colorTest() {
// TODO: test color // TODO: test color
} }
@ -61,7 +61,7 @@ public class DogTest {
* Test the property 'breed' * Test the property 'breed'
*/ */
@Test @Test
public void breedTest() { void breedTest() {
// TODO: test breed // TODO: test breed
} }

View File

@ -18,24 +18,25 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays;
import java.util.List; import java.util.List;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for EnumArrays * Model tests for EnumArrays
*/ */
public class EnumArraysTest { class EnumArraysTest {
private final EnumArrays model = new EnumArrays(); private final EnumArrays model = new EnumArrays();
/** /**
* Model tests for EnumArrays * Model tests for EnumArrays
*/ */
@Test @Test
public void testEnumArrays() { void testEnumArrays() {
// TODO: test EnumArrays // TODO: test EnumArrays
} }
@ -43,7 +44,7 @@ public class EnumArraysTest {
* Test the property 'justSymbol' * Test the property 'justSymbol'
*/ */
@Test @Test
public void justSymbolTest() { void justSymbolTest() {
// TODO: test justSymbol // TODO: test justSymbol
} }
@ -51,7 +52,7 @@ public class EnumArraysTest {
* Test the property 'arrayEnum' * Test the property 'arrayEnum'
*/ */
@Test @Test
public void arrayEnumTest() { void arrayEnumTest() {
// TODO: test arrayEnum // TODO: test arrayEnum
} }

View File

@ -13,20 +13,19 @@
package org.openapitools.client.model; package org.openapitools.client.model;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for EnumClass * Model tests for EnumClass
*/ */
public class EnumClassTest { class EnumClassTest {
/** /**
* Model tests for EnumClass * Model tests for EnumClass
*/ */
@Test @Test
public void testEnumClass() { void testEnumClass() {
// TODO: test EnumClass // TODO: test EnumClass
} }

View File

@ -18,6 +18,7 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.v3.oas.annotations.media.Schema;
import org.openapitools.client.model.OuterEnum; import org.openapitools.client.model.OuterEnum;
import org.openapitools.client.model.OuterEnumDefaultValue; import org.openapitools.client.model.OuterEnumDefaultValue;
import org.openapitools.client.model.OuterEnumInteger; import org.openapitools.client.model.OuterEnumInteger;
@ -26,22 +27,21 @@ import org.openapitools.jackson.nullable.JsonNullable;
import com.fasterxml.jackson.annotation.JsonIgnore; import com.fasterxml.jackson.annotation.JsonIgnore;
import org.openapitools.jackson.nullable.JsonNullable; import org.openapitools.jackson.nullable.JsonNullable;
import java.util.NoSuchElementException; import java.util.NoSuchElementException;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for EnumTest * Model tests for EnumTest
*/ */
public class EnumTestTest { class EnumTestTest {
private final EnumTest model = new EnumTest(); private final EnumTest model = new EnumTest();
/** /**
* Model tests for EnumTest * Model tests for EnumTest
*/ */
@Test @Test
public void testEnumTest() { void testEnumTest() {
// TODO: test EnumTest // TODO: test EnumTest
} }
@ -49,7 +49,7 @@ public class EnumTestTest {
* Test the property 'enumString' * Test the property 'enumString'
*/ */
@Test @Test
public void enumStringTest() { void enumStringTest() {
// TODO: test enumString // TODO: test enumString
} }
@ -57,7 +57,7 @@ public class EnumTestTest {
* Test the property 'enumStringRequired' * Test the property 'enumStringRequired'
*/ */
@Test @Test
public void enumStringRequiredTest() { void enumStringRequiredTest() {
// TODO: test enumStringRequired // TODO: test enumStringRequired
} }
@ -65,7 +65,7 @@ public class EnumTestTest {
* Test the property 'enumInteger' * Test the property 'enumInteger'
*/ */
@Test @Test
public void enumIntegerTest() { void enumIntegerTest() {
// TODO: test enumInteger // TODO: test enumInteger
} }
@ -73,7 +73,7 @@ public class EnumTestTest {
* Test the property 'enumNumber' * Test the property 'enumNumber'
*/ */
@Test @Test
public void enumNumberTest() { void enumNumberTest() {
// TODO: test enumNumber // TODO: test enumNumber
} }
@ -81,7 +81,7 @@ public class EnumTestTest {
* Test the property 'outerEnum' * Test the property 'outerEnum'
*/ */
@Test @Test
public void outerEnumTest() { void outerEnumTest() {
// TODO: test outerEnum // TODO: test outerEnum
} }
@ -89,7 +89,7 @@ public class EnumTestTest {
* Test the property 'outerEnumInteger' * Test the property 'outerEnumInteger'
*/ */
@Test @Test
public void outerEnumIntegerTest() { void outerEnumIntegerTest() {
// TODO: test outerEnumInteger // TODO: test outerEnumInteger
} }
@ -97,7 +97,7 @@ public class EnumTestTest {
* Test the property 'outerEnumDefaultValue' * Test the property 'outerEnumDefaultValue'
*/ */
@Test @Test
public void outerEnumDefaultValueTest() { void outerEnumDefaultValueTest() {
// TODO: test outerEnumDefaultValue // TODO: test outerEnumDefaultValue
} }
@ -105,7 +105,7 @@ public class EnumTestTest {
* Test the property 'outerEnumIntegerDefaultValue' * Test the property 'outerEnumIntegerDefaultValue'
*/ */
@Test @Test
public void outerEnumIntegerDefaultValueTest() { void outerEnumIntegerDefaultValueTest() {
// TODO: test outerEnumIntegerDefaultValue // TODO: test outerEnumIntegerDefaultValue
} }

View File

@ -22,21 +22,21 @@ import io.swagger.v3.oas.annotations.media.Schema;
import java.math.BigDecimal; import java.math.BigDecimal;
import java.util.HashMap; import java.util.HashMap;
import java.util.Map; import java.util.Map;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for FakeBigDecimalMap200Response * Model tests for FakeBigDecimalMap200Response
*/ */
public class FakeBigDecimalMap200ResponseTest { class FakeBigDecimalMap200ResponseTest {
private final FakeBigDecimalMap200Response model = new FakeBigDecimalMap200Response(); private final FakeBigDecimalMap200Response model = new FakeBigDecimalMap200Response();
/** /**
* Model tests for FakeBigDecimalMap200Response * Model tests for FakeBigDecimalMap200Response
*/ */
@Test @Test
public void testFakeBigDecimalMap200Response() { void testFakeBigDecimalMap200Response() {
// TODO: test FakeBigDecimalMap200Response // TODO: test FakeBigDecimalMap200Response
} }
@ -44,7 +44,7 @@ public class FakeBigDecimalMap200ResponseTest {
* Test the property 'someId' * Test the property 'someId'
*/ */
@Test @Test
public void someIdTest() { void someIdTest() {
// TODO: test someId // TODO: test someId
} }
@ -52,7 +52,7 @@ public class FakeBigDecimalMap200ResponseTest {
* Test the property 'someMap' * Test the property 'someMap'
*/ */
@Test @Test
public void someMapTest() { void someMapTest() {
// TODO: test someMap // TODO: test someMap
} }

View File

@ -18,25 +18,26 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.v3.oas.annotations.media.Schema;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.Arrays;
import java.util.List; import java.util.List;
import org.openapitools.client.model.ModelFile; import org.openapitools.client.model.ModelFile;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for FileSchemaTestClass * Model tests for FileSchemaTestClass
*/ */
public class FileSchemaTestClassTest { class FileSchemaTestClassTest {
private final FileSchemaTestClass model = new FileSchemaTestClass(); private final FileSchemaTestClass model = new FileSchemaTestClass();
/** /**
* Model tests for FileSchemaTestClass * Model tests for FileSchemaTestClass
*/ */
@Test @Test
public void testFileSchemaTestClass() { void testFileSchemaTestClass() {
// TODO: test FileSchemaTestClass // TODO: test FileSchemaTestClass
} }
@ -44,7 +45,7 @@ public class FileSchemaTestClassTest {
* Test the property '_file' * Test the property '_file'
*/ */
@Test @Test
public void _fileTest() { void _fileTest() {
// TODO: test _file // TODO: test _file
} }
@ -52,7 +53,7 @@ public class FileSchemaTestClassTest {
* Test the property 'files' * Test the property 'files'
*/ */
@Test @Test
public void filesTest() { void filesTest() {
// TODO: test files // TODO: test files
} }

View File

@ -18,23 +18,23 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator; import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName; import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue; import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.v3.oas.annotations.media.Schema;
import org.openapitools.client.model.Foo; import org.openapitools.client.model.Foo;
import org.junit.Assert; import org.junit.jupiter.api.Assertions;
import org.junit.Ignore; import org.junit.jupiter.api.Disabled;
import org.junit.Test; import org.junit.jupiter.api.Test;
/** /**
* Model tests for FooGetDefaultResponse * Model tests for FooGetDefaultResponse
*/ */
public class FooGetDefaultResponseTest { class FooGetDefaultResponseTest {
private final FooGetDefaultResponse model = new FooGetDefaultResponse(); private final FooGetDefaultResponse model = new FooGetDefaultResponse();
/** /**
* Model tests for FooGetDefaultResponse * Model tests for FooGetDefaultResponse
*/ */
@Test @Test
public void testFooGetDefaultResponse() { void testFooGetDefaultResponse() {
// TODO: test FooGetDefaultResponse // TODO: test FooGetDefaultResponse
} }
@ -42,7 +42,7 @@ public class FooGetDefaultResponseTest {
* Test the property 'string' * Test the property 'string'
*/ */
@Test @Test
public void stringTest() { void stringTest() {
// TODO: test string // TODO: test string
} }

Some files were not shown because too many files have changed in this diff Show More