update sample tests, fix Java tests (#20300)

* replace removed forkMode

* remove junit runner where it's not needed

* update samples without skipping test files, but skip files named "FILES"

* revert overwriting custom tests, add custom java tests to list

* add one sample to CircleCI, fix various Java tests
This commit is contained in:
martin-mfg
2024-12-15 10:09:58 +01:00
committed by GitHub
parent 4e5a828c12
commit d87a70dd93
2192 changed files with 12623 additions and 9212 deletions

View File

@@ -15,8 +15,8 @@ package org.openapitools.client.api;
import org.openapitools.client.ApiException;
import org.openapitools.client.model.Client;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.ArrayList;
import java.util.HashMap;

View File

@@ -15,8 +15,8 @@ package org.openapitools.client.api;
import org.openapitools.client.ApiException;
import org.openapitools.client.model.FooGetDefaultResponse;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.ArrayList;
import java.util.HashMap;

View File

@@ -16,6 +16,7 @@ package org.openapitools.client.api;
import org.openapitools.client.ApiException;
import java.math.BigDecimal;
import org.openapitools.client.model.Client;
import org.openapitools.client.model.FakeBigDecimalMap200Response;
import java.io.File;
import org.openapitools.client.model.FileSchemaTestClass;
import org.openapitools.client.model.HealthCheckResult;
@@ -23,9 +24,10 @@ import java.time.LocalDate;
import java.time.OffsetDateTime;
import org.openapitools.client.model.OuterComposite;
import org.openapitools.client.model.OuterEnum;
import org.openapitools.client.model.TestInlineFreeformAdditionalPropertiesRequest;
import org.openapitools.client.model.User;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.ArrayList;
import java.util.HashMap;
@@ -44,6 +46,22 @@ public class FakeApiTest {
private final FakeApi api = new FakeApi();
/**
*
*
* for Java apache and Java native, test toUrlQueryString for maps with BegDecimal keys
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void fakeBigDecimalMapTest() throws ApiException {
CompletableFuture<FakeBigDecimalMap200Response> response =
api.fakeBigDecimalMap();
// TODO: test validations
}
/**
* Health check endpoint
*
@@ -128,6 +146,22 @@ public class FakeApiTest {
// TODO: test validations
}
/**
* application/json UTF8
*
*
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void getApplicationJsonUtf8Test() throws ApiException {
CompletableFuture<List<OuterEnum>> response =
api.getApplicationJsonUtf8();
// TODO: test validations
}
/**
* Array of Enums
*
@@ -144,6 +178,23 @@ public class FakeApiTest {
// TODO: test validations
}
/**
* test referenced additionalProperties
*
*
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void testAdditionalPropertiesReferenceTest() throws ApiException {
Map<String, Object> requestBody = null;
CompletableFuture<Void> response = api.testAdditionalPropertiesReference(requestBody);
// TODO: test validations
}
/**
*
*
@@ -298,6 +349,23 @@ public class FakeApiTest {
// TODO: test validations
}
/**
* test inline free-form additionalProperties
*
*
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void testInlineFreeformAdditionalPropertiesTest() throws ApiException {
TestInlineFreeformAdditionalPropertiesRequest testInlineFreeformAdditionalPropertiesRequest = null;
CompletableFuture<Void> response = api.testInlineFreeformAdditionalProperties(testInlineFreeformAdditionalPropertiesRequest);
// TODO: test validations
}
/**
* test json serialization of form data
*
@@ -337,4 +405,21 @@ public class FakeApiTest {
// TODO: test validations
}
/**
* test referenced string map
*
*
*
* @throws ApiException
* if the Api call fails
*/
@Test
public void testStringMapReferenceTest() throws ApiException {
Map<String, String> requestBody = null;
CompletableFuture<Void> response = api.testStringMapReference(requestBody);
// TODO: test validations
}
}

View File

@@ -15,8 +15,8 @@ package org.openapitools.client.api;
import org.openapitools.client.ApiException;
import org.openapitools.client.model.Client;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.ArrayList;
import java.util.HashMap;

View File

@@ -17,8 +17,8 @@ import org.openapitools.client.ApiException;
import java.io.File;
import org.openapitools.client.model.ModelApiResponse;
import org.openapitools.client.model.Pet;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.ArrayList;
import java.util.HashMap;

View File

@@ -15,8 +15,8 @@ package org.openapitools.client.api;
import org.openapitools.client.ApiException;
import org.openapitools.client.model.Order;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.ArrayList;
import java.util.HashMap;

View File

@@ -16,8 +16,8 @@ package org.openapitools.client.api;
import org.openapitools.client.ApiException;
import java.time.OffsetDateTime;
import org.openapitools.client.model.User;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
import java.util.ArrayList;
import java.util.HashMap;

View File

@@ -18,24 +18,28 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
import org.openapitools.jackson.nullable.JsonNullable;
import com.fasterxml.jackson.annotation.JsonIgnore;
import org.openapitools.jackson.nullable.JsonNullable;
import java.util.NoSuchElementException;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesClass
*/
public class AdditionalPropertiesClassTest {
class AdditionalPropertiesClassTest {
private final AdditionalPropertiesClass model = new AdditionalPropertiesClass();
/**
* Model tests for AdditionalPropertiesClass
*/
@Test
public void testAdditionalPropertiesClass() {
void testAdditionalPropertiesClass() {
// TODO: test AdditionalPropertiesClass
}
@@ -43,7 +47,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapProperty'
*/
@Test
public void mapPropertyTest() {
void mapPropertyTest() {
// TODO: test mapProperty
}
@@ -51,8 +55,56 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapOfMapProperty'
*/
@Test
public void mapOfMapPropertyTest() {
void mapOfMapPropertyTest() {
// TODO: test mapOfMapProperty
}
/**
* Test the property 'anytype1'
*/
@Test
void anytype1Test() {
// TODO: test anytype1
}
/**
* Test the property 'mapWithUndeclaredPropertiesAnytype1'
*/
@Test
void mapWithUndeclaredPropertiesAnytype1Test() {
// TODO: test mapWithUndeclaredPropertiesAnytype1
}
/**
* Test the property 'mapWithUndeclaredPropertiesAnytype2'
*/
@Test
void mapWithUndeclaredPropertiesAnytype2Test() {
// TODO: test mapWithUndeclaredPropertiesAnytype2
}
/**
* Test the property 'mapWithUndeclaredPropertiesAnytype3'
*/
@Test
void mapWithUndeclaredPropertiesAnytype3Test() {
// TODO: test mapWithUndeclaredPropertiesAnytype3
}
/**
* Test the property 'emptyMap'
*/
@Test
void emptyMapTest() {
// TODO: test emptyMap
}
/**
* Test the property 'mapWithUndeclaredPropertiesString'
*/
@Test
void mapWithUndeclaredPropertiesStringTest() {
// TODO: test mapWithUndeclaredPropertiesString
}
}

View File

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

View File

@@ -18,22 +18,22 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for AppleReq
*/
public class AppleReqTest {
class AppleReqTest {
private final AppleReq model = new AppleReq();
/**
* Model tests for AppleReq
*/
@Test
public void testAppleReq() {
void testAppleReq() {
// TODO: test AppleReq
}
@@ -41,7 +41,7 @@ public class AppleReqTest {
* Test the property 'cultivar'
*/
@Test
public void cultivarTest() {
void cultivarTest() {
// TODO: test cultivar
}
@@ -49,7 +49,7 @@ public class AppleReqTest {
* Test the property 'mealy'
*/
@Test
public void mealyTest() {
void mealyTest() {
// TODO: test mealy
}

View File

@@ -18,22 +18,22 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for Apple
*/
public class AppleTest {
class AppleTest {
private final Apple model = new Apple();
/**
* Model tests for Apple
*/
@Test
public void testApple() {
void testApple() {
// TODO: test Apple
}
@@ -41,7 +41,7 @@ public class AppleTest {
* Test the property 'cultivar'
*/
@Test
public void cultivarTest() {
void cultivarTest() {
// TODO: test cultivar
}
@@ -49,7 +49,7 @@ public class AppleTest {
* Test the property 'origin'
*/
@Test
public void originTest() {
void originTest() {
// TODO: test origin
}

View File

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

View File

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

View File

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

View File

@@ -19,22 +19,22 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.math.BigDecimal;
import java.util.Arrays;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for BananaReq
*/
public class BananaReqTest {
class BananaReqTest {
private final BananaReq model = new BananaReq();
/**
* Model tests for BananaReq
*/
@Test
public void testBananaReq() {
void testBananaReq() {
// TODO: test BananaReq
}
@@ -42,7 +42,7 @@ public class BananaReqTest {
* Test the property 'lengthCm'
*/
@Test
public void lengthCmTest() {
void lengthCmTest() {
// TODO: test lengthCm
}
@@ -50,7 +50,7 @@ public class BananaReqTest {
* Test the property 'sweet'
*/
@Test
public void sweetTest() {
void sweetTest() {
// TODO: test sweet
}

View File

@@ -19,22 +19,22 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.math.BigDecimal;
import java.util.Arrays;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for Banana
*/
public class BananaTest {
class BananaTest {
private final Banana model = new Banana();
/**
* Model tests for Banana
*/
@Test
public void testBanana() {
void testBanana() {
// TODO: test Banana
}
@@ -42,7 +42,7 @@ public class BananaTest {
* Test the property 'lengthCm'
*/
@Test
public void lengthCmTest() {
void lengthCmTest() {
// TODO: test lengthCm
}

View File

@@ -18,22 +18,22 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for BasquePig
*/
public class BasquePigTest {
class BasquePigTest {
private final BasquePig model = new BasquePig();
/**
* Model tests for BasquePig
*/
@Test
public void testBasquePig() {
void testBasquePig() {
// TODO: test BasquePig
}
@@ -41,7 +41,7 @@ public class BasquePigTest {
* Test the property 'className'
*/
@Test
public void classNameTest() {
void classNameTest() {
// TODO: test className
}

View File

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

View File

@@ -21,23 +21,24 @@ import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import java.util.Map;
import org.openapitools.client.model.Animal;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for Cat
*/
public class CatTest {
class CatTest {
private final Cat model = new Cat();
/**
* Model tests for Cat
*/
@Test
public void testCat() {
void testCat() {
// TODO: test Cat
}
@@ -45,7 +46,7 @@ public class CatTest {
* Test the property 'className'
*/
@Test
public void classNameTest() {
void classNameTest() {
// TODO: test className
}
@@ -53,7 +54,7 @@ public class CatTest {
* Test the property 'color'
*/
@Test
public void colorTest() {
void colorTest() {
// TODO: test color
}
@@ -61,7 +62,7 @@ public class CatTest {
* Test the property 'declawed'
*/
@Test
public void declawedTest() {
void declawedTest() {
// 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.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for Category
*/
public class CategoryTest {
class CategoryTest {
private final Category model = new Category();
/**
* Model tests for Category
*/
@Test
public void testCategory() {
void testCategory() {
// TODO: test Category
}
@@ -41,7 +41,7 @@ public class CategoryTest {
* Test the property 'id'
*/
@Test
public void idTest() {
void idTest() {
// TODO: test id
}
@@ -49,7 +49,7 @@ public class CategoryTest {
* Test the property 'name'
*/
@Test
public void nameTest() {
void nameTest() {
// TODO: test name
}

View File

@@ -21,6 +21,7 @@ import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.openapitools.client.model.ParentPet;
import java.util.Set;
import java.util.HashSet;
@@ -28,18 +29,17 @@ import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for ChildCat
*/
public class ChildCatTest {
class ChildCatTest {
private final ChildCat model = new ChildCat();
/**
* Model tests for ChildCat
*/
@Test
public void testChildCat() {
void testChildCat() {
// TODO: test ChildCat
}
@@ -47,7 +47,7 @@ public class ChildCatTest {
* Test the property 'petType'
*/
@Test
public void petTypeTest() {
void petTypeTest() {
// TODO: test petType
}
@@ -55,7 +55,7 @@ public class ChildCatTest {
* Test the property 'name'
*/
@Test
public void nameTest() {
void nameTest() {
// TODO: test name
}

View File

@@ -18,22 +18,22 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for ClassModel
*/
public class ClassModelTest {
class ClassModelTest {
private final ClassModel model = new ClassModel();
/**
* Model tests for ClassModel
*/
@Test
public void testClassModel() {
void testClassModel() {
// TODO: test ClassModel
}
@@ -41,7 +41,7 @@ public class ClassModelTest {
* Test the property 'propertyClass'
*/
@Test
public void propertyClassTest() {
void propertyClassTest() {
// 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.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for Client
*/
public class ClientTest {
class ClientTest {
private final Client model = new Client();
/**
* Model tests for Client
*/
@Test
public void testClient() {
void testClient() {
// TODO: test Client
}
@@ -41,7 +41,7 @@ public class ClientTest {
* Test the property 'client'
*/
@Test
public void clientTest() {
void clientTest() {
// 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.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for ComplexQuadrilateral
*/
public class ComplexQuadrilateralTest {
class ComplexQuadrilateralTest {
private final ComplexQuadrilateral model = new ComplexQuadrilateral();
/**
* Model tests for ComplexQuadrilateral
*/
@Test
public void testComplexQuadrilateral() {
void testComplexQuadrilateral() {
// TODO: test ComplexQuadrilateral
}
@@ -41,7 +41,7 @@ public class ComplexQuadrilateralTest {
* Test the property 'shapeType'
*/
@Test
public void shapeTypeTest() {
void shapeTypeTest() {
// TODO: test shapeType
}
@@ -49,7 +49,7 @@ public class ComplexQuadrilateralTest {
* Test the property 'quadrilateralType'
*/
@Test
public void quadrilateralTypeTest() {
void quadrilateralTypeTest() {
// TODO: test quadrilateralType
}

View File

@@ -18,22 +18,22 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for DanishPig
*/
public class DanishPigTest {
class DanishPigTest {
private final DanishPig model = new DanishPig();
/**
* Model tests for DanishPig
*/
@Test
public void testDanishPig() {
void testDanishPig() {
// TODO: test DanishPig
}
@@ -41,7 +41,7 @@ public class DanishPigTest {
* Test the property 'className'
*/
@Test
public void classNameTest() {
void classNameTest() {
// TODO: test className
}

View File

@@ -18,22 +18,22 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for DeprecatedObject
*/
public class DeprecatedObjectTest {
class DeprecatedObjectTest {
private final DeprecatedObject model = new DeprecatedObject();
/**
* Model tests for DeprecatedObject
*/
@Test
public void testDeprecatedObject() {
void testDeprecatedObject() {
// TODO: test DeprecatedObject
}
@@ -41,7 +41,7 @@ public class DeprecatedObjectTest {
* Test the property 'name'
*/
@Test
public void nameTest() {
void nameTest() {
// 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.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.openapitools.client.model.Animal;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for Dog
*/
public class DogTest {
class DogTest {
private final Dog model = new Dog();
/**
* Model tests for Dog
*/
@Test
public void testDog() {
void testDog() {
// TODO: test Dog
}
@@ -45,7 +45,7 @@ public class DogTest {
* Test the property 'className'
*/
@Test
public void classNameTest() {
void classNameTest() {
// TODO: test className
}
@@ -53,7 +53,7 @@ public class DogTest {
* Test the property 'color'
*/
@Test
public void colorTest() {
void colorTest() {
// TODO: test color
}
@@ -61,7 +61,7 @@ public class DogTest {
* Test the property 'breed'
*/
@Test
public void breedTest() {
void breedTest() {
// TODO: test breed
}

View File

@@ -19,6 +19,7 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
@@ -34,18 +35,17 @@ import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for Drawing
*/
public class DrawingTest {
class DrawingTest {
private final Drawing model = new Drawing();
/**
* Model tests for Drawing
*/
@Test
public void testDrawing() {
void testDrawing() {
// TODO: test Drawing
}
@@ -53,7 +53,7 @@ public class DrawingTest {
* Test the property 'mainShape'
*/
@Test
public void mainShapeTest() {
void mainShapeTest() {
// TODO: test mainShape
}
@@ -61,7 +61,7 @@ public class DrawingTest {
* Test the property 'shapeOrNull'
*/
@Test
public void shapeOrNullTest() {
void shapeOrNullTest() {
// TODO: test shapeOrNull
}
@@ -69,7 +69,7 @@ public class DrawingTest {
* Test the property 'nullableShape'
*/
@Test
public void nullableShapeTest() {
void nullableShapeTest() {
// TODO: test nullableShape
}
@@ -77,7 +77,7 @@ public class DrawingTest {
* Test the property 'shapes'
*/
@Test
public void shapesTest() {
void shapesTest() {
// TODO: test shapes
}

View File

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

View File

@@ -17,16 +17,15 @@ import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for EnumClass
*/
public class EnumClassTest {
class EnumClassTest {
/**
* Model tests for EnumClass
*/
@Test
public void testEnumClass() {
void testEnumClass() {
// TODO: test EnumClass
}

View File

@@ -18,6 +18,7 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.openapitools.client.model.OuterEnum;
import org.openapitools.client.model.OuterEnumDefaultValue;
import org.openapitools.client.model.OuterEnumInteger;
@@ -30,18 +31,17 @@ import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for EnumTest
*/
public class EnumTestTest {
class EnumTestTest {
private final EnumTest model = new EnumTest();
/**
* Model tests for EnumTest
*/
@Test
public void testEnumTest() {
void testEnumTest() {
// TODO: test EnumTest
}
@@ -49,7 +49,7 @@ public class EnumTestTest {
* Test the property 'enumString'
*/
@Test
public void enumStringTest() {
void enumStringTest() {
// TODO: test enumString
}
@@ -57,7 +57,7 @@ public class EnumTestTest {
* Test the property 'enumStringRequired'
*/
@Test
public void enumStringRequiredTest() {
void enumStringRequiredTest() {
// TODO: test enumStringRequired
}
@@ -65,15 +65,23 @@ public class EnumTestTest {
* Test the property 'enumInteger'
*/
@Test
public void enumIntegerTest() {
void enumIntegerTest() {
// TODO: test enumInteger
}
/**
* Test the property 'enumIntegerOnly'
*/
@Test
void enumIntegerOnlyTest() {
// TODO: test enumIntegerOnly
}
/**
* Test the property 'enumNumber'
*/
@Test
public void enumNumberTest() {
void enumNumberTest() {
// TODO: test enumNumber
}
@@ -81,7 +89,7 @@ public class EnumTestTest {
* Test the property 'outerEnum'
*/
@Test
public void outerEnumTest() {
void outerEnumTest() {
// TODO: test outerEnum
}
@@ -89,7 +97,7 @@ public class EnumTestTest {
* Test the property 'outerEnumInteger'
*/
@Test
public void outerEnumIntegerTest() {
void outerEnumIntegerTest() {
// TODO: test outerEnumInteger
}
@@ -97,7 +105,7 @@ public class EnumTestTest {
* Test the property 'outerEnumDefaultValue'
*/
@Test
public void outerEnumDefaultValueTest() {
void outerEnumDefaultValueTest() {
// TODO: test outerEnumDefaultValue
}
@@ -105,7 +113,7 @@ public class EnumTestTest {
* Test the property 'outerEnumIntegerDefaultValue'
*/
@Test
public void outerEnumIntegerDefaultValueTest() {
void outerEnumIntegerDefaultValueTest() {
// TODO: test outerEnumIntegerDefaultValue
}

View File

@@ -18,22 +18,22 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for EquilateralTriangle
*/
public class EquilateralTriangleTest {
class EquilateralTriangleTest {
private final EquilateralTriangle model = new EquilateralTriangle();
/**
* Model tests for EquilateralTriangle
*/
@Test
public void testEquilateralTriangle() {
void testEquilateralTriangle() {
// TODO: test EquilateralTriangle
}
@@ -41,7 +41,7 @@ public class EquilateralTriangleTest {
* Test the property 'shapeType'
*/
@Test
public void shapeTypeTest() {
void shapeTypeTest() {
// TODO: test shapeType
}
@@ -49,7 +49,7 @@ public class EquilateralTriangleTest {
* Test the property 'triangleType'
*/
@Test
public void triangleTypeTest() {
void triangleTypeTest() {
// TODO: test triangleType
}

View File

@@ -19,6 +19,7 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.math.BigDecimal;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
import org.junit.jupiter.api.Assertions;
@@ -28,14 +29,14 @@ import org.junit.jupiter.api.Test;
/**
* Model tests for FakeBigDecimalMap200Response
*/
public class FakeBigDecimalMap200ResponseTest {
class FakeBigDecimalMap200ResponseTest {
private final FakeBigDecimalMap200Response model = new FakeBigDecimalMap200Response();
/**
* Model tests for FakeBigDecimalMap200Response
*/
@Test
public void testFakeBigDecimalMap200Response() {
void testFakeBigDecimalMap200Response() {
// TODO: test FakeBigDecimalMap200Response
}
@@ -43,7 +44,7 @@ public class FakeBigDecimalMap200ResponseTest {
* Test the property 'someId'
*/
@Test
public void someIdTest() {
void someIdTest() {
// TODO: test someId
}
@@ -51,7 +52,7 @@ public class FakeBigDecimalMap200ResponseTest {
* Test the property 'someMap'
*/
@Test
public void someMapTest() {
void someMapTest() {
// 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.JsonValue;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
import org.openapitools.client.model.ModelFile;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for FileSchemaTestClass
*/
public class FileSchemaTestClassTest {
class FileSchemaTestClassTest {
private final FileSchemaTestClass model = new FileSchemaTestClass();
/**
* Model tests for FileSchemaTestClass
*/
@Test
public void testFileSchemaTestClass() {
void testFileSchemaTestClass() {
// TODO: test FileSchemaTestClass
}
@@ -44,7 +44,7 @@ public class FileSchemaTestClassTest {
* Test the property '_file'
*/
@Test
public void _fileTest() {
void _fileTest() {
// TODO: test _file
}
@@ -52,7 +52,7 @@ public class FileSchemaTestClassTest {
* Test the property 'files'
*/
@Test
public void filesTest() {
void filesTest() {
// TODO: test files
}

View File

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

View File

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

View File

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

View File

@@ -19,24 +19,24 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.math.BigDecimal;
import java.util.Arrays;
import org.openapitools.client.model.AppleReq;
import org.openapitools.client.model.BananaReq;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for FruitReq
*/
public class FruitReqTest {
class FruitReqTest {
private final FruitReq model = new FruitReq();
/**
* Model tests for FruitReq
*/
@Test
public void testFruitReq() {
void testFruitReq() {
// TODO: test FruitReq
}
@@ -44,7 +44,7 @@ public class FruitReqTest {
* Test the property 'cultivar'
*/
@Test
public void cultivarTest() {
void cultivarTest() {
// TODO: test cultivar
}
@@ -52,7 +52,7 @@ public class FruitReqTest {
* Test the property 'mealy'
*/
@Test
public void mealyTest() {
void mealyTest() {
// TODO: test mealy
}
@@ -60,7 +60,7 @@ public class FruitReqTest {
* Test the property 'lengthCm'
*/
@Test
public void lengthCmTest() {
void lengthCmTest() {
// TODO: test lengthCm
}
@@ -68,7 +68,7 @@ public class FruitReqTest {
* Test the property 'sweet'
*/
@Test
public void sweetTest() {
void sweetTest() {
// TODO: test sweet
}

View File

@@ -19,24 +19,24 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.math.BigDecimal;
import java.util.Arrays;
import org.openapitools.client.model.Apple;
import org.openapitools.client.model.Banana;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for Fruit
*/
public class FruitTest {
class FruitTest {
private final Fruit model = new Fruit();
/**
* Model tests for Fruit
*/
@Test
public void testFruit() {
void testFruit() {
// TODO: test Fruit
}
@@ -44,7 +44,7 @@ public class FruitTest {
* Test the property 'cultivar'
*/
@Test
public void cultivarTest() {
void cultivarTest() {
// TODO: test cultivar
}
@@ -52,7 +52,7 @@ public class FruitTest {
* Test the property 'origin'
*/
@Test
public void originTest() {
void originTest() {
// TODO: test origin
}
@@ -60,7 +60,7 @@ public class FruitTest {
* Test the property 'lengthCm'
*/
@Test
public void lengthCmTest() {
void lengthCmTest() {
// TODO: test lengthCm
}

View File

@@ -19,24 +19,24 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.math.BigDecimal;
import java.util.Arrays;
import org.openapitools.client.model.Apple;
import org.openapitools.client.model.Banana;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for GmFruit
*/
public class GmFruitTest {
class GmFruitTest {
private final GmFruit model = new GmFruit();
/**
* Model tests for GmFruit
*/
@Test
public void testGmFruit() {
void testGmFruit() {
// TODO: test GmFruit
}
@@ -44,7 +44,7 @@ public class GmFruitTest {
* Test the property 'cultivar'
*/
@Test
public void cultivarTest() {
void cultivarTest() {
// TODO: test cultivar
}
@@ -52,7 +52,7 @@ public class GmFruitTest {
* Test the property 'origin'
*/
@Test
public void originTest() {
void originTest() {
// TODO: test origin
}
@@ -60,7 +60,7 @@ public class GmFruitTest {
* Test the property 'lengthCm'
*/
@Test
public void lengthCmTest() {
void lengthCmTest() {
// TODO: test lengthCm
}

View File

@@ -21,24 +21,22 @@ import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import org.openapitools.client.model.ChildCat;
import org.openapitools.client.model.ParentPet;
import java.util.Arrays;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for GrandparentAnimal
*/
public class GrandparentAnimalTest {
class GrandparentAnimalTest {
private final GrandparentAnimal model = new GrandparentAnimal();
/**
* Model tests for GrandparentAnimal
*/
@Test
public void testGrandparentAnimal() {
void testGrandparentAnimal() {
// TODO: test GrandparentAnimal
}
@@ -46,7 +44,7 @@ public class GrandparentAnimalTest {
* Test the property 'petType'
*/
@Test
public void petTypeTest() {
void petTypeTest() {
// TODO: test petType
}

View File

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

View File

@@ -18,6 +18,7 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.openapitools.jackson.nullable.JsonNullable;
import com.fasterxml.jackson.annotation.JsonIgnore;
import org.openapitools.jackson.nullable.JsonNullable;
@@ -26,18 +27,17 @@ import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for HealthCheckResult
*/
public class HealthCheckResultTest {
class HealthCheckResultTest {
private final HealthCheckResult model = new HealthCheckResult();
/**
* Model tests for HealthCheckResult
*/
@Test
public void testHealthCheckResult() {
void testHealthCheckResult() {
// TODO: test HealthCheckResult
}
@@ -45,7 +45,7 @@ public class HealthCheckResultTest {
* Test the property 'nullableMessage'
*/
@Test
public void nullableMessageTest() {
void nullableMessageTest() {
// TODO: test nullableMessage
}

View File

@@ -18,22 +18,22 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for IsoscelesTriangle
*/
public class IsoscelesTriangleTest {
class IsoscelesTriangleTest {
private final IsoscelesTriangle model = new IsoscelesTriangle();
/**
* Model tests for IsoscelesTriangle
*/
@Test
public void testIsoscelesTriangle() {
void testIsoscelesTriangle() {
// TODO: test IsoscelesTriangle
}
@@ -41,7 +41,7 @@ public class IsoscelesTriangleTest {
* Test the property 'shapeType'
*/
@Test
public void shapeTypeTest() {
void shapeTypeTest() {
// TODO: test shapeType
}
@@ -49,7 +49,7 @@ public class IsoscelesTriangleTest {
* Test the property 'triangleType'
*/
@Test
public void triangleTypeTest() {
void triangleTypeTest() {
// TODO: test triangleType
}

View File

@@ -21,6 +21,7 @@ import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.openapitools.client.model.Pig;
import org.openapitools.client.model.Whale;
import org.openapitools.client.model.Zebra;
@@ -28,18 +29,17 @@ import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for Mammal
*/
public class MammalTest {
class MammalTest {
private final Mammal model = new Mammal();
/**
* Model tests for Mammal
*/
@Test
public void testMammal() {
void testMammal() {
// TODO: test Mammal
}
@@ -47,7 +47,7 @@ public class MammalTest {
* Test the property 'hasBaleen'
*/
@Test
public void hasBaleenTest() {
void hasBaleenTest() {
// TODO: test hasBaleen
}
@@ -55,7 +55,7 @@ public class MammalTest {
* Test the property 'hasTeeth'
*/
@Test
public void hasTeethTest() {
void hasTeethTest() {
// TODO: test hasTeeth
}
@@ -63,7 +63,7 @@ public class MammalTest {
* Test the property 'className'
*/
@Test
public void classNameTest() {
void classNameTest() {
// TODO: test className
}
@@ -71,7 +71,7 @@ public class MammalTest {
* Test the property 'type'
*/
@Test
public void typeTest() {
void typeTest() {
// TODO: test type
}

View File

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

View File

@@ -19,6 +19,7 @@ import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.time.OffsetDateTime;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
import java.util.UUID;
@@ -27,18 +28,17 @@ import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for MixedPropertiesAndAdditionalPropertiesClass
*/
public class MixedPropertiesAndAdditionalPropertiesClassTest {
class MixedPropertiesAndAdditionalPropertiesClassTest {
private final MixedPropertiesAndAdditionalPropertiesClass model = new MixedPropertiesAndAdditionalPropertiesClass();
/**
* Model tests for MixedPropertiesAndAdditionalPropertiesClass
*/
@Test
public void testMixedPropertiesAndAdditionalPropertiesClass() {
void testMixedPropertiesAndAdditionalPropertiesClass() {
// TODO: test MixedPropertiesAndAdditionalPropertiesClass
}
@@ -46,7 +46,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'uuid'
*/
@Test
public void uuidTest() {
void uuidTest() {
// TODO: test uuid
}
@@ -54,7 +54,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'dateTime'
*/
@Test
public void dateTimeTest() {
void dateTimeTest() {
// TODO: test dateTime
}
@@ -62,7 +62,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'map'
*/
@Test
public void mapTest() {
void mapTest() {
// TODO: test map
}

View File

@@ -18,22 +18,22 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for Model200Response
*/
public class Model200ResponseTest {
class Model200ResponseTest {
private final Model200Response model = new Model200Response();
/**
* Model tests for Model200Response
*/
@Test
public void testModel200Response() {
void testModel200Response() {
// TODO: test Model200Response
}
@@ -41,7 +41,7 @@ public class Model200ResponseTest {
* Test the property 'name'
*/
@Test
public void nameTest() {
void nameTest() {
// TODO: test name
}
@@ -49,7 +49,7 @@ public class Model200ResponseTest {
* Test the property 'propertyClass'
*/
@Test
public void propertyClassTest() {
void propertyClassTest() {
// 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.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for ModelApiResponse
*/
public class ModelApiResponseTest {
class ModelApiResponseTest {
private final ModelApiResponse model = new ModelApiResponse();
/**
* Model tests for ModelApiResponse
*/
@Test
public void testModelApiResponse() {
void testModelApiResponse() {
// TODO: test ModelApiResponse
}
@@ -41,7 +41,7 @@ public class ModelApiResponseTest {
* Test the property 'code'
*/
@Test
public void codeTest() {
void codeTest() {
// TODO: test code
}
@@ -49,7 +49,7 @@ public class ModelApiResponseTest {
* Test the property 'type'
*/
@Test
public void typeTest() {
void typeTest() {
// TODO: test type
}
@@ -57,7 +57,7 @@ public class ModelApiResponseTest {
* Test the property 'message'
*/
@Test
public void messageTest() {
void messageTest() {
// TODO: test message
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

@@ -21,24 +21,24 @@ import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.openapitools.client.model.Quadrilateral;
import org.openapitools.client.model.Triangle;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for NullableShape
*/
public class NullableShapeTest {
class NullableShapeTest {
private final NullableShape model = new NullableShape();
/**
* Model tests for NullableShape
*/
@Test
public void testNullableShape() {
void testNullableShape() {
// TODO: test NullableShape
}
@@ -46,7 +46,7 @@ public class NullableShapeTest {
* Test the property 'shapeType'
*/
@Test
public void shapeTypeTest() {
void shapeTypeTest() {
// TODO: test shapeType
}
@@ -54,7 +54,7 @@ public class NullableShapeTest {
* Test the property 'triangleType'
*/
@Test
public void triangleTypeTest() {
void triangleTypeTest() {
// TODO: test triangleType
}
@@ -62,7 +62,7 @@ public class NullableShapeTest {
* Test the property 'quadrilateralType'
*/
@Test
public void quadrilateralTypeTest() {
void quadrilateralTypeTest() {
// TODO: test quadrilateralType
}

View File

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

View File

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

View File

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

View File

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

View File

@@ -17,16 +17,15 @@ import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for OuterEnumDefaultValue
*/
public class OuterEnumDefaultValueTest {
class OuterEnumDefaultValueTest {
/**
* Model tests for OuterEnumDefaultValue
*/
@Test
public void testOuterEnumDefaultValue() {
void testOuterEnumDefaultValue() {
// TODO: test OuterEnumDefaultValue
}

View File

@@ -17,16 +17,15 @@ import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for OuterEnumIntegerDefaultValue
*/
public class OuterEnumIntegerDefaultValueTest {
class OuterEnumIntegerDefaultValueTest {
/**
* Model tests for OuterEnumIntegerDefaultValue
*/
@Test
public void testOuterEnumIntegerDefaultValue() {
void testOuterEnumIntegerDefaultValue() {
// TODO: test OuterEnumIntegerDefaultValue
}

View File

@@ -17,16 +17,15 @@ import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for OuterEnumInteger
*/
public class OuterEnumIntegerTest {
class OuterEnumIntegerTest {
/**
* Model tests for OuterEnumInteger
*/
@Test
public void testOuterEnumInteger() {
void testOuterEnumInteger() {
// TODO: test OuterEnumInteger
}

View File

@@ -17,16 +17,15 @@ import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for OuterEnum
*/
public class OuterEnumTest {
class OuterEnumTest {
/**
* Model tests for OuterEnum
*/
@Test
public void testOuterEnum() {
void testOuterEnum() {
// TODO: test OuterEnum
}

View File

@@ -21,24 +21,23 @@ import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import org.openapitools.client.model.ChildCat;
import java.util.Arrays;
import org.openapitools.client.model.GrandparentAnimal;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for ParentPet
*/
public class ParentPetTest {
class ParentPetTest {
private final ParentPet model = new ParentPet();
/**
* Model tests for ParentPet
*/
@Test
public void testParentPet() {
void testParentPet() {
// TODO: test ParentPet
}
@@ -46,7 +45,7 @@ public class ParentPetTest {
* Test the property 'petType'
*/
@Test
public void petTypeTest() {
void petTypeTest() {
// TODO: test petType
}

View File

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

View File

@@ -21,24 +21,24 @@ import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.openapitools.client.model.BasquePig;
import org.openapitools.client.model.DanishPig;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for Pig
*/
public class PigTest {
class PigTest {
private final Pig model = new Pig();
/**
* Model tests for Pig
*/
@Test
public void testPig() {
void testPig() {
// TODO: test Pig
}
@@ -46,7 +46,7 @@ public class PigTest {
* Test the property 'className'
*/
@Test
public void classNameTest() {
void classNameTest() {
// TODO: test className
}

View File

@@ -18,22 +18,22 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for QuadrilateralInterface
*/
public class QuadrilateralInterfaceTest {
class QuadrilateralInterfaceTest {
private final QuadrilateralInterface model = new QuadrilateralInterface();
/**
* Model tests for QuadrilateralInterface
*/
@Test
public void testQuadrilateralInterface() {
void testQuadrilateralInterface() {
// TODO: test QuadrilateralInterface
}
@@ -41,7 +41,7 @@ public class QuadrilateralInterfaceTest {
* Test the property 'quadrilateralType'
*/
@Test
public void quadrilateralTypeTest() {
void quadrilateralTypeTest() {
// TODO: test quadrilateralType
}

View File

@@ -21,24 +21,24 @@ import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.openapitools.client.model.ComplexQuadrilateral;
import org.openapitools.client.model.SimpleQuadrilateral;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for Quadrilateral
*/
public class QuadrilateralTest {
class QuadrilateralTest {
private final Quadrilateral model = new Quadrilateral();
/**
* Model tests for Quadrilateral
*/
@Test
public void testQuadrilateral() {
void testQuadrilateral() {
// TODO: test Quadrilateral
}
@@ -46,7 +46,7 @@ public class QuadrilateralTest {
* Test the property 'shapeType'
*/
@Test
public void shapeTypeTest() {
void shapeTypeTest() {
// TODO: test shapeType
}
@@ -54,7 +54,7 @@ public class QuadrilateralTest {
* Test the property 'quadrilateralType'
*/
@Test
public void quadrilateralTypeTest() {
void quadrilateralTypeTest() {
// TODO: test quadrilateralType
}

View File

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

View File

@@ -18,22 +18,22 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for ScaleneTriangle
*/
public class ScaleneTriangleTest {
class ScaleneTriangleTest {
private final ScaleneTriangle model = new ScaleneTriangle();
/**
* Model tests for ScaleneTriangle
*/
@Test
public void testScaleneTriangle() {
void testScaleneTriangle() {
// TODO: test ScaleneTriangle
}
@@ -41,7 +41,7 @@ public class ScaleneTriangleTest {
* Test the property 'shapeType'
*/
@Test
public void shapeTypeTest() {
void shapeTypeTest() {
// TODO: test shapeType
}
@@ -49,7 +49,7 @@ public class ScaleneTriangleTest {
* Test the property 'triangleType'
*/
@Test
public void triangleTypeTest() {
void triangleTypeTest() {
// TODO: test triangleType
}

View File

@@ -18,22 +18,22 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for ShapeInterface
*/
public class ShapeInterfaceTest {
class ShapeInterfaceTest {
private final ShapeInterface model = new ShapeInterface();
/**
* Model tests for ShapeInterface
*/
@Test
public void testShapeInterface() {
void testShapeInterface() {
// TODO: test ShapeInterface
}
@@ -41,7 +41,7 @@ public class ShapeInterfaceTest {
* Test the property 'shapeType'
*/
@Test
public void shapeTypeTest() {
void shapeTypeTest() {
// TODO: test shapeType
}

View File

@@ -21,24 +21,24 @@ import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.openapitools.client.model.Quadrilateral;
import org.openapitools.client.model.Triangle;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for ShapeOrNull
*/
public class ShapeOrNullTest {
class ShapeOrNullTest {
private final ShapeOrNull model = new ShapeOrNull();
/**
* Model tests for ShapeOrNull
*/
@Test
public void testShapeOrNull() {
void testShapeOrNull() {
// TODO: test ShapeOrNull
}
@@ -46,7 +46,7 @@ public class ShapeOrNullTest {
* Test the property 'shapeType'
*/
@Test
public void shapeTypeTest() {
void shapeTypeTest() {
// TODO: test shapeType
}
@@ -54,7 +54,7 @@ public class ShapeOrNullTest {
* Test the property 'triangleType'
*/
@Test
public void triangleTypeTest() {
void triangleTypeTest() {
// TODO: test triangleType
}
@@ -62,7 +62,7 @@ public class ShapeOrNullTest {
* Test the property 'quadrilateralType'
*/
@Test
public void quadrilateralTypeTest() {
void quadrilateralTypeTest() {
// TODO: test quadrilateralType
}

View File

@@ -21,24 +21,24 @@ import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.openapitools.client.model.Quadrilateral;
import org.openapitools.client.model.Triangle;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for Shape
*/
public class ShapeTest {
class ShapeTest {
private final Shape model = new Shape();
/**
* Model tests for Shape
*/
@Test
public void testShape() {
void testShape() {
// TODO: test Shape
}
@@ -46,7 +46,7 @@ public class ShapeTest {
* Test the property 'shapeType'
*/
@Test
public void shapeTypeTest() {
void shapeTypeTest() {
// TODO: test shapeType
}
@@ -54,7 +54,7 @@ public class ShapeTest {
* Test the property 'triangleType'
*/
@Test
public void triangleTypeTest() {
void triangleTypeTest() {
// TODO: test triangleType
}
@@ -62,7 +62,7 @@ public class ShapeTest {
* Test the property 'quadrilateralType'
*/
@Test
public void quadrilateralTypeTest() {
void quadrilateralTypeTest() {
// TODO: test quadrilateralType
}

View File

@@ -18,22 +18,22 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for SimpleQuadrilateral
*/
public class SimpleQuadrilateralTest {
class SimpleQuadrilateralTest {
private final SimpleQuadrilateral model = new SimpleQuadrilateral();
/**
* Model tests for SimpleQuadrilateral
*/
@Test
public void testSimpleQuadrilateral() {
void testSimpleQuadrilateral() {
// TODO: test SimpleQuadrilateral
}
@@ -41,7 +41,7 @@ public class SimpleQuadrilateralTest {
* Test the property 'shapeType'
*/
@Test
public void shapeTypeTest() {
void shapeTypeTest() {
// TODO: test shapeType
}
@@ -49,7 +49,7 @@ public class SimpleQuadrilateralTest {
* Test the property 'quadrilateralType'
*/
@Test
public void quadrilateralTypeTest() {
void quadrilateralTypeTest() {
// TODO: test quadrilateralType
}

View File

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

View File

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

View File

@@ -28,14 +28,14 @@ import org.junit.jupiter.api.Test;
/**
* Model tests for TestInlineFreeformAdditionalPropertiesRequest
*/
public class TestInlineFreeformAdditionalPropertiesRequestTest {
class TestInlineFreeformAdditionalPropertiesRequestTest {
private final TestInlineFreeformAdditionalPropertiesRequest model = new TestInlineFreeformAdditionalPropertiesRequest();
/**
* Model tests for TestInlineFreeformAdditionalPropertiesRequest
*/
@Test
public void testTestInlineFreeformAdditionalPropertiesRequest() {
void testTestInlineFreeformAdditionalPropertiesRequest() {
// TODO: test TestInlineFreeformAdditionalPropertiesRequest
}
@@ -43,7 +43,7 @@ public class TestInlineFreeformAdditionalPropertiesRequestTest {
* Test the property 'someProperty'
*/
@Test
public void somePropertyTest() {
void somePropertyTest() {
// TODO: test someProperty
}

View File

@@ -18,22 +18,22 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for TriangleInterface
*/
public class TriangleInterfaceTest {
class TriangleInterfaceTest {
private final TriangleInterface model = new TriangleInterface();
/**
* Model tests for TriangleInterface
*/
@Test
public void testTriangleInterface() {
void testTriangleInterface() {
// TODO: test TriangleInterface
}
@@ -41,7 +41,7 @@ public class TriangleInterfaceTest {
* Test the property 'triangleType'
*/
@Test
public void triangleTypeTest() {
void triangleTypeTest() {
// TODO: test triangleType
}

View File

@@ -21,6 +21,7 @@ import com.fasterxml.jackson.annotation.JsonSubTypes;
import com.fasterxml.jackson.annotation.JsonTypeInfo;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.openapitools.client.model.EquilateralTriangle;
import org.openapitools.client.model.IsoscelesTriangle;
import org.openapitools.client.model.ScaleneTriangle;
@@ -28,18 +29,17 @@ import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for Triangle
*/
public class TriangleTest {
class TriangleTest {
private final Triangle model = new Triangle();
/**
* Model tests for Triangle
*/
@Test
public void testTriangle() {
void testTriangle() {
// TODO: test Triangle
}
@@ -47,7 +47,7 @@ public class TriangleTest {
* Test the property 'shapeType'
*/
@Test
public void shapeTypeTest() {
void shapeTypeTest() {
// TODO: test shapeType
}
@@ -55,7 +55,7 @@ public class TriangleTest {
* Test the property 'triangleType'
*/
@Test
public void triangleTypeTest() {
void triangleTypeTest() {
// TODO: test triangleType
}

View File

@@ -18,22 +18,26 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.openapitools.jackson.nullable.JsonNullable;
import com.fasterxml.jackson.annotation.JsonIgnore;
import org.openapitools.jackson.nullable.JsonNullable;
import java.util.NoSuchElementException;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for User
*/
public class UserTest {
class UserTest {
private final User model = new User();
/**
* Model tests for User
*/
@Test
public void testUser() {
void testUser() {
// TODO: test User
}
@@ -41,7 +45,7 @@ public class UserTest {
* Test the property 'id'
*/
@Test
public void idTest() {
void idTest() {
// TODO: test id
}
@@ -49,7 +53,7 @@ public class UserTest {
* Test the property 'username'
*/
@Test
public void usernameTest() {
void usernameTest() {
// TODO: test username
}
@@ -57,7 +61,7 @@ public class UserTest {
* Test the property 'firstName'
*/
@Test
public void firstNameTest() {
void firstNameTest() {
// TODO: test firstName
}
@@ -65,7 +69,7 @@ public class UserTest {
* Test the property 'lastName'
*/
@Test
public void lastNameTest() {
void lastNameTest() {
// TODO: test lastName
}
@@ -73,7 +77,7 @@ public class UserTest {
* Test the property 'email'
*/
@Test
public void emailTest() {
void emailTest() {
// TODO: test email
}
@@ -81,7 +85,7 @@ public class UserTest {
* Test the property 'password'
*/
@Test
public void passwordTest() {
void passwordTest() {
// TODO: test password
}
@@ -89,7 +93,7 @@ public class UserTest {
* Test the property 'phone'
*/
@Test
public void phoneTest() {
void phoneTest() {
// TODO: test phone
}
@@ -97,8 +101,40 @@ public class UserTest {
* Test the property 'userStatus'
*/
@Test
public void userStatusTest() {
void userStatusTest() {
// TODO: test userStatus
}
/**
* Test the property 'objectWithNoDeclaredProps'
*/
@Test
void objectWithNoDeclaredPropsTest() {
// TODO: test objectWithNoDeclaredProps
}
/**
* Test the property 'objectWithNoDeclaredPropsNullable'
*/
@Test
void objectWithNoDeclaredPropsNullableTest() {
// TODO: test objectWithNoDeclaredPropsNullable
}
/**
* Test the property 'anyTypeProp'
*/
@Test
void anyTypePropTest() {
// TODO: test anyTypeProp
}
/**
* Test the property 'anyTypePropNullable'
*/
@Test
void anyTypePropNullableTest() {
// TODO: test anyTypePropNullable
}
}

View File

@@ -18,22 +18,22 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for Whale
*/
public class WhaleTest {
class WhaleTest {
private final Whale model = new Whale();
/**
* Model tests for Whale
*/
@Test
public void testWhale() {
void testWhale() {
// TODO: test Whale
}
@@ -41,7 +41,7 @@ public class WhaleTest {
* Test the property 'hasBaleen'
*/
@Test
public void hasBaleenTest() {
void hasBaleenTest() {
// TODO: test hasBaleen
}
@@ -49,7 +49,7 @@ public class WhaleTest {
* Test the property 'hasTeeth'
*/
@Test
public void hasTeethTest() {
void hasTeethTest() {
// TODO: test hasTeeth
}
@@ -57,7 +57,7 @@ public class WhaleTest {
* Test the property 'className'
*/
@Test
public void classNameTest() {
void classNameTest() {
// TODO: test className
}

View File

@@ -18,24 +18,24 @@ import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.Arrays;
import java.util.HashMap;
import java.util.Map;
import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Disabled;
import org.junit.jupiter.api.Test;
/**
* Model tests for Zebra
*/
public class ZebraTest {
class ZebraTest {
private final Zebra model = new Zebra();
/**
* Model tests for Zebra
*/
@Test
public void testZebra() {
void testZebra() {
// TODO: test Zebra
}
@@ -43,7 +43,7 @@ public class ZebraTest {
* Test the property 'type'
*/
@Test
public void typeTest() {
void typeTest() {
// TODO: test type
}
@@ -51,7 +51,7 @@ public class ZebraTest {
* Test the property 'className'
*/
@Test
public void classNameTest() {
void classNameTest() {
// TODO: test className
}