[Java][*] Annotate deprecated operations and schemas (#9478)

Refs #3358

Ensure `deprecated` operations are annotated/documented as such on the
generated methods. Libraries updated:
  * [feign]
  * [google-api-client]
  * [microprofile]
  * [okhttp-gson]
  * [resttemplate]
  * [retrofit]
  * [retrofit/play*]
  * [webclient]
  * [vertx]

Ensure `deprecated` schemas are annotated/documented as such on the
generated classes/fields. Libraries updated:
  * [feign]
  * [google-api-client]
  * [jersey2]
  * [microprofile]
  * [native]
  * [okhttp-gson]
  * [rest-assured]
  * [resteasy]
  * [resttemplate]
  * [retrofit*]
  * [webclient]
  * [vertx]

Also fix two minor bugs to get the java sample tests working:

* Fix an invalid jackson-datatype-threetenbp version number in vertx/pom.mustache
* Fix a bad return type in webclient/api_test.mustache when uniqueItems=true

Since this commit updates petstore-with-fake-endpoints-models-for-testing.yaml,
several other samples were updated, but it's just new files to reflect the
deprecated schemas, so there should be no consequential differences.

Relevant bits of the spec:

* https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.2.md#user-content-operationdeprecated
* https://github.com/OAI/OpenAPI-Specification/blob/main/versions/3.0.2.md#user-content-schemadeprecated
This commit is contained in:
Jon Jensen
2021-07-18 20:27:03 -06:00
committed by GitHub
parent c42e03e251
commit bd070308d9
2116 changed files with 229574 additions and 578 deletions

View File

@@ -92,7 +92,9 @@ public interface PetApi extends ApiClient.Api {
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
* @param tags Tags to filter by (required)
* @return Set<Pet>
* @deprecated
*/
@Deprecated
@RequestLine("GET /pet/findByTags?tags={tags}")
@Headers({
"Accept: application/json",
@@ -113,7 +115,9 @@ public interface PetApi extends ApiClient.Api {
* <li>tags - Tags to filter by (required)</li>
* </ul>
* @return Set&lt;Pet&gt;
* @deprecated
*/
@Deprecated
@RequestLine("GET /pet/findByTags?tags={tags}")
@Headers({
"Accept: application/json",

View File

@@ -2,8 +2,8 @@ package org.openapitools.client.api;
import org.openapitools.client.ApiClient;
import org.openapitools.client.model.Client;
import org.junit.Before;
import org.junit.Test;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.BeforeEach;
import java.util.ArrayList;
import java.util.HashMap;
@@ -13,11 +13,11 @@ import java.util.Map;
/**
* API tests for AnotherFakeApi
*/
public class AnotherFakeApiTest {
class AnotherFakeApiTest {
private AnotherFakeApi api;
@Before
@BeforeEach
public void setup() {
api = new ApiClient().buildClient(AnotherFakeApi.class);
}
@@ -29,7 +29,7 @@ public class AnotherFakeApiTest {
* To test special tags and operation ID starting with number
*/
@Test
public void call123testSpecialTagsTest() {
void call123testSpecialTagsTest() {
Client body = null;
// Client response = api.call123testSpecialTags(body);

View File

@@ -10,8 +10,8 @@ import org.threeten.bp.OffsetDateTime;
import org.openapitools.client.model.OuterComposite;
import org.openapitools.client.model.User;
import org.openapitools.client.model.XmlItem;
import org.junit.Before;
import org.junit.Test;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.BeforeEach;
import java.util.ArrayList;
import java.util.HashMap;
@@ -21,11 +21,11 @@ import java.util.Map;
/**
* API tests for FakeApi
*/
public class FakeApiTest {
class FakeApiTest {
private FakeApi api;
@Before
@BeforeEach
public void setup() {
api = new ApiClient().buildClient(FakeApi.class);
}
@@ -37,7 +37,7 @@ public class FakeApiTest {
* this route creates an XmlItem
*/
@Test
public void createXmlItemTest() {
void createXmlItemTest() {
XmlItem xmlItem = null;
// api.createXmlItem(xmlItem);
@@ -51,7 +51,7 @@ public class FakeApiTest {
* Test serialization of outer boolean types
*/
@Test
public void fakeOuterBooleanSerializeTest() {
void fakeOuterBooleanSerializeTest() {
Boolean body = null;
// Boolean response = api.fakeOuterBooleanSerialize(body);
@@ -65,7 +65,7 @@ public class FakeApiTest {
* Test serialization of object with outer number type
*/
@Test
public void fakeOuterCompositeSerializeTest() {
void fakeOuterCompositeSerializeTest() {
OuterComposite body = null;
// OuterComposite response = api.fakeOuterCompositeSerialize(body);
@@ -79,7 +79,7 @@ public class FakeApiTest {
* Test serialization of outer number types
*/
@Test
public void fakeOuterNumberSerializeTest() {
void fakeOuterNumberSerializeTest() {
BigDecimal body = null;
// BigDecimal response = api.fakeOuterNumberSerialize(body);
@@ -93,7 +93,7 @@ public class FakeApiTest {
* Test serialization of outer string types
*/
@Test
public void fakeOuterStringSerializeTest() {
void fakeOuterStringSerializeTest() {
String body = null;
// String response = api.fakeOuterStringSerialize(body);
@@ -107,7 +107,7 @@ public class FakeApiTest {
* For this test, the body for this request much reference a schema named &#x60;File&#x60;.
*/
@Test
public void testBodyWithFileSchemaTest() {
void testBodyWithFileSchemaTest() {
FileSchemaTestClass body = null;
// api.testBodyWithFileSchema(body);
@@ -121,7 +121,7 @@ public class FakeApiTest {
*
*/
@Test
public void testBodyWithQueryParamsTest() {
void testBodyWithQueryParamsTest() {
String query = null;
User body = null;
// api.testBodyWithQueryParams(query, body);
@@ -138,7 +138,7 @@ public class FakeApiTest {
* listing them out individually.
*/
@Test
public void testBodyWithQueryParamsTestQueryMap() {
void testBodyWithQueryParamsTestQueryMap() {
User body = null;
FakeApi.TestBodyWithQueryParamsQueryParams queryParams = new FakeApi.TestBodyWithQueryParamsQueryParams()
.query(null);
@@ -153,7 +153,7 @@ public class FakeApiTest {
* To test \&quot;client\&quot; model
*/
@Test
public void testClientModelTest() {
void testClientModelTest() {
Client body = null;
// Client response = api.testClientModel(body);
@@ -167,7 +167,7 @@ public class FakeApiTest {
* Fake endpoint for testing various parameters 假端點 偽のエンドポイント 가짜 엔드 포인트
*/
@Test
public void testEndpointParametersTest() {
void testEndpointParametersTest() {
BigDecimal number = null;
Double _double = null;
String patternWithoutDelimiter = null;
@@ -194,7 +194,7 @@ public class FakeApiTest {
* To test enum parameters
*/
@Test
public void testEnumParametersTest() {
void testEnumParametersTest() {
List<String> enumHeaderStringArray = null;
String enumHeaderString = null;
List<String> enumQueryStringArray = null;
@@ -217,7 +217,7 @@ public class FakeApiTest {
* listing them out individually.
*/
@Test
public void testEnumParametersTestQueryMap() {
void testEnumParametersTestQueryMap() {
List<String> enumHeaderStringArray = null;
String enumHeaderString = null;
List<String> enumFormStringArray = null;
@@ -238,7 +238,7 @@ public class FakeApiTest {
* Fake endpoint to test group parameters (optional)
*/
@Test
public void testGroupParametersTest() {
void testGroupParametersTest() {
Integer requiredStringGroup = null;
Boolean requiredBooleanGroup = null;
Long requiredInt64Group = null;
@@ -259,7 +259,7 @@ public class FakeApiTest {
* listing them out individually.
*/
@Test
public void testGroupParametersTestQueryMap() {
void testGroupParametersTestQueryMap() {
Boolean requiredBooleanGroup = null;
Boolean booleanGroup = null;
FakeApi.TestGroupParametersQueryParams queryParams = new FakeApi.TestGroupParametersQueryParams()
@@ -278,7 +278,7 @@ public class FakeApiTest {
*
*/
@Test
public void testInlineAdditionalPropertiesTest() {
void testInlineAdditionalPropertiesTest() {
Map<String, String> param = null;
// api.testInlineAdditionalProperties(param);
@@ -292,7 +292,7 @@ public class FakeApiTest {
*
*/
@Test
public void testJsonFormDataTest() {
void testJsonFormDataTest() {
String param = null;
String param2 = null;
// api.testJsonFormData(param, param2);
@@ -307,7 +307,7 @@ public class FakeApiTest {
* To test the collection format in query parameters
*/
@Test
public void testQueryParameterCollectionFormatTest() {
void testQueryParameterCollectionFormatTest() {
List<String> pipe = null;
List<String> ioutil = null;
List<String> http = null;
@@ -327,7 +327,7 @@ public class FakeApiTest {
* listing them out individually.
*/
@Test
public void testQueryParameterCollectionFormatTestQueryMap() {
void testQueryParameterCollectionFormatTestQueryMap() {
FakeApi.TestQueryParameterCollectionFormatQueryParams queryParams = new FakeApi.TestQueryParameterCollectionFormatQueryParams()
.pipe(null)
.ioutil(null)

View File

@@ -2,8 +2,8 @@ package org.openapitools.client.api;
import org.openapitools.client.ApiClient;
import org.openapitools.client.model.Client;
import org.junit.Before;
import org.junit.Test;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.BeforeEach;
import java.util.ArrayList;
import java.util.HashMap;
@@ -13,11 +13,11 @@ import java.util.Map;
/**
* API tests for FakeClassnameTags123Api
*/
public class FakeClassnameTags123ApiTest {
class FakeClassnameTags123ApiTest {
private FakeClassnameTags123Api api;
@Before
@BeforeEach
public void setup() {
api = new ApiClient().buildClient(FakeClassnameTags123Api.class);
}
@@ -29,7 +29,7 @@ public class FakeClassnameTags123ApiTest {
* To test class name in snake case
*/
@Test
public void testClassnameTest() {
void testClassnameTest() {
Client body = null;
// Client response = api.testClassname(body);

View File

@@ -5,8 +5,8 @@ import java.io.File;
import org.openapitools.client.model.ModelApiResponse;
import org.openapitools.client.model.Pet;
import java.util.Set;
import org.junit.Before;
import org.junit.Test;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.BeforeEach;
import java.util.ArrayList;
import java.util.HashMap;
@@ -16,11 +16,11 @@ import java.util.Map;
/**
* API tests for PetApi
*/
public class PetApiTest {
class PetApiTest {
private PetApi api;
@Before
@BeforeEach
public void setup() {
api = new ApiClient().buildClient(PetApi.class);
}
@@ -32,7 +32,7 @@ public class PetApiTest {
*
*/
@Test
public void addPetTest() {
void addPetTest() {
Pet body = null;
// api.addPet(body);
@@ -46,7 +46,7 @@ public class PetApiTest {
*
*/
@Test
public void deletePetTest() {
void deletePetTest() {
Long petId = null;
String apiKey = null;
// api.deletePet(petId, apiKey);
@@ -61,7 +61,7 @@ public class PetApiTest {
* Multiple status values can be provided with comma separated strings
*/
@Test
public void findPetsByStatusTest() {
void findPetsByStatusTest() {
List<String> status = null;
// List<Pet> response = api.findPetsByStatus(status);
@@ -77,7 +77,7 @@ public class PetApiTest {
* listing them out individually.
*/
@Test
public void findPetsByStatusTestQueryMap() {
void findPetsByStatusTestQueryMap() {
PetApi.FindPetsByStatusQueryParams queryParams = new PetApi.FindPetsByStatusQueryParams()
.status(null);
// List<Pet> response = api.findPetsByStatus(queryParams);
@@ -91,7 +91,7 @@ public class PetApiTest {
* Multiple tags can be provided with comma separated strings. Use tag1, tag2, tag3 for testing.
*/
@Test
public void findPetsByTagsTest() {
void findPetsByTagsTest() {
Set<String> tags = null;
// Set<Pet> response = api.findPetsByTags(tags);
@@ -107,7 +107,7 @@ public class PetApiTest {
* listing them out individually.
*/
@Test
public void findPetsByTagsTestQueryMap() {
void findPetsByTagsTestQueryMap() {
PetApi.FindPetsByTagsQueryParams queryParams = new PetApi.FindPetsByTagsQueryParams()
.tags(null);
// Set<Pet> response = api.findPetsByTags(queryParams);
@@ -121,7 +121,7 @@ public class PetApiTest {
* Returns a single pet
*/
@Test
public void getPetByIdTest() {
void getPetByIdTest() {
Long petId = null;
// Pet response = api.getPetById(petId);
@@ -135,7 +135,7 @@ public class PetApiTest {
*
*/
@Test
public void updatePetTest() {
void updatePetTest() {
Pet body = null;
// api.updatePet(body);
@@ -149,7 +149,7 @@ public class PetApiTest {
*
*/
@Test
public void updatePetWithFormTest() {
void updatePetWithFormTest() {
Long petId = null;
String name = null;
String status = null;
@@ -165,7 +165,7 @@ public class PetApiTest {
*
*/
@Test
public void uploadFileTest() {
void uploadFileTest() {
Long petId = null;
String additionalMetadata = null;
File file = null;
@@ -181,7 +181,7 @@ public class PetApiTest {
*
*/
@Test
public void uploadFileWithRequiredFileTest() {
void uploadFileWithRequiredFileTest() {
Long petId = null;
File requiredFile = null;
String additionalMetadata = null;

View File

@@ -2,8 +2,8 @@ package org.openapitools.client.api;
import org.openapitools.client.ApiClient;
import org.openapitools.client.model.Order;
import org.junit.Before;
import org.junit.Test;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.BeforeEach;
import java.util.ArrayList;
import java.util.HashMap;
@@ -13,11 +13,11 @@ import java.util.Map;
/**
* API tests for StoreApi
*/
public class StoreApiTest {
class StoreApiTest {
private StoreApi api;
@Before
@BeforeEach
public void setup() {
api = new ApiClient().buildClient(StoreApi.class);
}
@@ -29,7 +29,7 @@ public class StoreApiTest {
* For valid response try integer IDs with value &lt; 1000. Anything above 1000 or nonintegers will generate API errors
*/
@Test
public void deleteOrderTest() {
void deleteOrderTest() {
String orderId = null;
// api.deleteOrder(orderId);
@@ -43,7 +43,7 @@ public class StoreApiTest {
* Returns a map of status codes to quantities
*/
@Test
public void getInventoryTest() {
void getInventoryTest() {
// Map<String, Integer> response = api.getInventory();
// TODO: test validations
@@ -56,7 +56,7 @@ public class StoreApiTest {
* For valid response try integer IDs with value &lt;&#x3D; 5 or &gt; 10. Other values will generated exceptions
*/
@Test
public void getOrderByIdTest() {
void getOrderByIdTest() {
Long orderId = null;
// Order response = api.getOrderById(orderId);
@@ -70,7 +70,7 @@ public class StoreApiTest {
*
*/
@Test
public void placeOrderTest() {
void placeOrderTest() {
Order body = null;
// Order response = api.placeOrder(body);

View File

@@ -2,8 +2,8 @@ package org.openapitools.client.api;
import org.openapitools.client.ApiClient;
import org.openapitools.client.model.User;
import org.junit.Before;
import org.junit.Test;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.BeforeEach;
import java.util.ArrayList;
import java.util.HashMap;
@@ -13,11 +13,11 @@ import java.util.Map;
/**
* API tests for UserApi
*/
public class UserApiTest {
class UserApiTest {
private UserApi api;
@Before
@BeforeEach
public void setup() {
api = new ApiClient().buildClient(UserApi.class);
}
@@ -29,7 +29,7 @@ public class UserApiTest {
* This can only be done by the logged in user.
*/
@Test
public void createUserTest() {
void createUserTest() {
User body = null;
// api.createUser(body);
@@ -43,7 +43,7 @@ public class UserApiTest {
*
*/
@Test
public void createUsersWithArrayInputTest() {
void createUsersWithArrayInputTest() {
List<User> body = null;
// api.createUsersWithArrayInput(body);
@@ -57,7 +57,7 @@ public class UserApiTest {
*
*/
@Test
public void createUsersWithListInputTest() {
void createUsersWithListInputTest() {
List<User> body = null;
// api.createUsersWithListInput(body);
@@ -71,7 +71,7 @@ public class UserApiTest {
* This can only be done by the logged in user.
*/
@Test
public void deleteUserTest() {
void deleteUserTest() {
String username = null;
// api.deleteUser(username);
@@ -85,7 +85,7 @@ public class UserApiTest {
*
*/
@Test
public void getUserByNameTest() {
void getUserByNameTest() {
String username = null;
// User response = api.getUserByName(username);
@@ -99,7 +99,7 @@ public class UserApiTest {
*
*/
@Test
public void loginUserTest() {
void loginUserTest() {
String username = null;
String password = null;
// String response = api.loginUser(username, password);
@@ -116,7 +116,7 @@ public class UserApiTest {
* listing them out individually.
*/
@Test
public void loginUserTestQueryMap() {
void loginUserTestQueryMap() {
UserApi.LoginUserQueryParams queryParams = new UserApi.LoginUserQueryParams()
.username(null)
.password(null);
@@ -131,7 +131,7 @@ public class UserApiTest {
*
*/
@Test
public void logoutUserTest() {
void logoutUserTest() {
// api.logoutUser();
// TODO: test validations
@@ -144,7 +144,7 @@ public class UserApiTest {
* This can only be done by the logged in user.
*/
@Test
public void updateUserTest() {
void updateUserTest() {
String username = null;
User body = null;
// api.updateUser(username, body);

View File

@@ -22,22 +22,20 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.HashMap;
import java.util.Map;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesAnyType
*/
public class AdditionalPropertiesAnyTypeTest {
class AdditionalPropertiesAnyTypeTest {
private final AdditionalPropertiesAnyType model = new AdditionalPropertiesAnyType();
/**
* Model tests for AdditionalPropertiesAnyType
*/
@Test
public void testAdditionalPropertiesAnyType() {
void testAdditionalPropertiesAnyType() {
// TODO: test AdditionalPropertiesAnyType
}
@@ -45,7 +43,7 @@ public class AdditionalPropertiesAnyTypeTest {
* Test the property 'name'
*/
@Test
public void nameTest() {
void nameTest() {
// TODO: test name
}

View File

@@ -23,22 +23,20 @@ import io.swagger.annotations.ApiModelProperty;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesArray
*/
public class AdditionalPropertiesArrayTest {
class AdditionalPropertiesArrayTest {
private final AdditionalPropertiesArray model = new AdditionalPropertiesArray();
/**
* Model tests for AdditionalPropertiesArray
*/
@Test
public void testAdditionalPropertiesArray() {
void testAdditionalPropertiesArray() {
// TODO: test AdditionalPropertiesArray
}
@@ -46,7 +44,7 @@ public class AdditionalPropertiesArrayTest {
* Test the property 'name'
*/
@Test
public void nameTest() {
void nameTest() {
// TODO: test name
}

View File

@@ -22,22 +22,20 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.HashMap;
import java.util.Map;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesBoolean
*/
public class AdditionalPropertiesBooleanTest {
class AdditionalPropertiesBooleanTest {
private final AdditionalPropertiesBoolean model = new AdditionalPropertiesBoolean();
/**
* Model tests for AdditionalPropertiesBoolean
*/
@Test
public void testAdditionalPropertiesBoolean() {
void testAdditionalPropertiesBoolean() {
// TODO: test AdditionalPropertiesBoolean
}
@@ -45,7 +43,7 @@ public class AdditionalPropertiesBooleanTest {
* Test the property 'name'
*/
@Test
public void nameTest() {
void nameTest() {
// TODO: test name
}

View File

@@ -24,22 +24,20 @@ import java.math.BigDecimal;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesClass
*/
public class AdditionalPropertiesClassTest {
class AdditionalPropertiesClassTest {
private final AdditionalPropertiesClass model = new AdditionalPropertiesClass();
/**
* Model tests for AdditionalPropertiesClass
*/
@Test
public void testAdditionalPropertiesClass() {
void testAdditionalPropertiesClass() {
// TODO: test AdditionalPropertiesClass
}
@@ -47,7 +45,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapString'
*/
@Test
public void mapStringTest() {
void mapStringTest() {
// TODO: test mapString
}
@@ -55,7 +53,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapNumber'
*/
@Test
public void mapNumberTest() {
void mapNumberTest() {
// TODO: test mapNumber
}
@@ -63,7 +61,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapInteger'
*/
@Test
public void mapIntegerTest() {
void mapIntegerTest() {
// TODO: test mapInteger
}
@@ -71,7 +69,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapBoolean'
*/
@Test
public void mapBooleanTest() {
void mapBooleanTest() {
// TODO: test mapBoolean
}
@@ -79,7 +77,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapArrayInteger'
*/
@Test
public void mapArrayIntegerTest() {
void mapArrayIntegerTest() {
// TODO: test mapArrayInteger
}
@@ -87,7 +85,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapArrayAnytype'
*/
@Test
public void mapArrayAnytypeTest() {
void mapArrayAnytypeTest() {
// TODO: test mapArrayAnytype
}
@@ -95,7 +93,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapMapString'
*/
@Test
public void mapMapStringTest() {
void mapMapStringTest() {
// TODO: test mapMapString
}
@@ -103,7 +101,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'mapMapAnytype'
*/
@Test
public void mapMapAnytypeTest() {
void mapMapAnytypeTest() {
// TODO: test mapMapAnytype
}
@@ -111,7 +109,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'anytype1'
*/
@Test
public void anytype1Test() {
void anytype1Test() {
// TODO: test anytype1
}
@@ -119,7 +117,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'anytype2'
*/
@Test
public void anytype2Test() {
void anytype2Test() {
// TODO: test anytype2
}
@@ -127,7 +125,7 @@ public class AdditionalPropertiesClassTest {
* Test the property 'anytype3'
*/
@Test
public void anytype3Test() {
void anytype3Test() {
// TODO: test anytype3
}

View File

@@ -22,22 +22,20 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.HashMap;
import java.util.Map;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesInteger
*/
public class AdditionalPropertiesIntegerTest {
class AdditionalPropertiesIntegerTest {
private final AdditionalPropertiesInteger model = new AdditionalPropertiesInteger();
/**
* Model tests for AdditionalPropertiesInteger
*/
@Test
public void testAdditionalPropertiesInteger() {
void testAdditionalPropertiesInteger() {
// TODO: test AdditionalPropertiesInteger
}
@@ -45,7 +43,7 @@ public class AdditionalPropertiesIntegerTest {
* Test the property 'name'
*/
@Test
public void nameTest() {
void nameTest() {
// TODO: test name
}

View File

@@ -23,22 +23,20 @@ import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
import java.util.HashMap;
import java.util.Map;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesNumber
*/
public class AdditionalPropertiesNumberTest {
class AdditionalPropertiesNumberTest {
private final AdditionalPropertiesNumber model = new AdditionalPropertiesNumber();
/**
* Model tests for AdditionalPropertiesNumber
*/
@Test
public void testAdditionalPropertiesNumber() {
void testAdditionalPropertiesNumber() {
// TODO: test AdditionalPropertiesNumber
}
@@ -46,7 +44,7 @@ public class AdditionalPropertiesNumberTest {
* Test the property 'name'
*/
@Test
public void nameTest() {
void nameTest() {
// TODO: test name
}

View File

@@ -22,22 +22,20 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.HashMap;
import java.util.Map;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesObject
*/
public class AdditionalPropertiesObjectTest {
class AdditionalPropertiesObjectTest {
private final AdditionalPropertiesObject model = new AdditionalPropertiesObject();
/**
* Model tests for AdditionalPropertiesObject
*/
@Test
public void testAdditionalPropertiesObject() {
void testAdditionalPropertiesObject() {
// TODO: test AdditionalPropertiesObject
}
@@ -45,7 +43,7 @@ public class AdditionalPropertiesObjectTest {
* Test the property 'name'
*/
@Test
public void nameTest() {
void nameTest() {
// TODO: test name
}

View File

@@ -22,22 +22,20 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.HashMap;
import java.util.Map;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for AdditionalPropertiesString
*/
public class AdditionalPropertiesStringTest {
class AdditionalPropertiesStringTest {
private final AdditionalPropertiesString model = new AdditionalPropertiesString();
/**
* Model tests for AdditionalPropertiesString
*/
@Test
public void testAdditionalPropertiesString() {
void testAdditionalPropertiesString() {
// TODO: test AdditionalPropertiesString
}
@@ -45,7 +43,7 @@ public class AdditionalPropertiesStringTest {
* Test the property 'name'
*/
@Test
public void nameTest() {
void nameTest() {
// TODO: test name
}

View File

@@ -25,22 +25,20 @@ import io.swagger.annotations.ApiModelProperty;
import org.openapitools.client.model.BigCat;
import org.openapitools.client.model.Cat;
import org.openapitools.client.model.Dog;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for Animal
*/
public class AnimalTest {
class AnimalTest {
private final Animal model = new Animal();
/**
* Model tests for Animal
*/
@Test
public void testAnimal() {
void testAnimal() {
// TODO: test Animal
}
@@ -48,7 +46,7 @@ public class AnimalTest {
* Test the property 'className'
*/
@Test
public void classNameTest() {
void classNameTest() {
// TODO: test className
}
@@ -56,7 +54,7 @@ public class AnimalTest {
* Test the property 'color'
*/
@Test
public void colorTest() {
void colorTest() {
// TODO: test color
}

View File

@@ -23,22 +23,20 @@ import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayOfArrayOfNumberOnly
*/
public class ArrayOfArrayOfNumberOnlyTest {
class ArrayOfArrayOfNumberOnlyTest {
private final ArrayOfArrayOfNumberOnly model = new ArrayOfArrayOfNumberOnly();
/**
* Model tests for ArrayOfArrayOfNumberOnly
*/
@Test
public void testArrayOfArrayOfNumberOnly() {
void testArrayOfArrayOfNumberOnly() {
// TODO: test ArrayOfArrayOfNumberOnly
}
@@ -46,7 +44,7 @@ public class ArrayOfArrayOfNumberOnlyTest {
* Test the property 'arrayArrayNumber'
*/
@Test
public void arrayArrayNumberTest() {
void arrayArrayNumberTest() {
// TODO: test arrayArrayNumber
}

View File

@@ -23,22 +23,20 @@ import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayOfNumberOnly
*/
public class ArrayOfNumberOnlyTest {
class ArrayOfNumberOnlyTest {
private final ArrayOfNumberOnly model = new ArrayOfNumberOnly();
/**
* Model tests for ArrayOfNumberOnly
*/
@Test
public void testArrayOfNumberOnly() {
void testArrayOfNumberOnly() {
// TODO: test ArrayOfNumberOnly
}
@@ -46,7 +44,7 @@ public class ArrayOfNumberOnlyTest {
* Test the property 'arrayNumber'
*/
@Test
public void arrayNumberTest() {
void arrayNumberTest() {
// TODO: test arrayNumber
}

View File

@@ -23,22 +23,20 @@ import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
import org.openapitools.client.model.ReadOnlyFirst;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for ArrayTest
*/
public class ArrayTestTest {
class ArrayTestTest {
private final ArrayTest model = new ArrayTest();
/**
* Model tests for ArrayTest
*/
@Test
public void testArrayTest() {
void testArrayTest() {
// TODO: test ArrayTest
}
@@ -46,7 +44,7 @@ public class ArrayTestTest {
* Test the property 'arrayOfString'
*/
@Test
public void arrayOfStringTest() {
void arrayOfStringTest() {
// TODO: test arrayOfString
}
@@ -54,7 +52,7 @@ public class ArrayTestTest {
* Test the property 'arrayArrayOfInteger'
*/
@Test
public void arrayArrayOfIntegerTest() {
void arrayArrayOfIntegerTest() {
// TODO: test arrayArrayOfInteger
}
@@ -62,7 +60,7 @@ public class ArrayTestTest {
* Test the property 'arrayArrayOfModel'
*/
@Test
public void arrayArrayOfModelTest() {
void arrayArrayOfModelTest() {
// TODO: test arrayArrayOfModel
}

View File

@@ -20,22 +20,20 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for BigCatAllOf
*/
public class BigCatAllOfTest {
class BigCatAllOfTest {
private final BigCatAllOf model = new BigCatAllOf();
/**
* Model tests for BigCatAllOf
*/
@Test
public void testBigCatAllOf() {
void testBigCatAllOf() {
// TODO: test BigCatAllOf
}
@@ -43,7 +41,7 @@ public class BigCatAllOfTest {
* Test the property 'kind'
*/
@Test
public void kindTest() {
void kindTest() {
// TODO: test kind
}

View File

@@ -24,22 +24,20 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.openapitools.client.model.BigCatAllOf;
import org.openapitools.client.model.Cat;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for BigCat
*/
public class BigCatTest {
class BigCatTest {
private final BigCat model = new BigCat();
/**
* Model tests for BigCat
*/
@Test
public void testBigCat() {
void testBigCat() {
// TODO: test BigCat
}
@@ -47,7 +45,7 @@ public class BigCatTest {
* Test the property 'className'
*/
@Test
public void classNameTest() {
void classNameTest() {
// TODO: test className
}
@@ -55,7 +53,7 @@ public class BigCatTest {
* Test the property 'color'
*/
@Test
public void colorTest() {
void colorTest() {
// TODO: test color
}
@@ -63,7 +61,7 @@ public class BigCatTest {
* Test the property 'declawed'
*/
@Test
public void declawedTest() {
void declawedTest() {
// TODO: test declawed
}
@@ -71,7 +69,7 @@ public class BigCatTest {
* Test the property 'kind'
*/
@Test
public void kindTest() {
void kindTest() {
// TODO: test kind
}

View File

@@ -20,22 +20,20 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for Capitalization
*/
public class CapitalizationTest {
class CapitalizationTest {
private final Capitalization model = new Capitalization();
/**
* Model tests for Capitalization
*/
@Test
public void testCapitalization() {
void testCapitalization() {
// TODO: test Capitalization
}
@@ -43,7 +41,7 @@ public class CapitalizationTest {
* Test the property 'smallCamel'
*/
@Test
public void smallCamelTest() {
void smallCamelTest() {
// TODO: test smallCamel
}
@@ -51,7 +49,7 @@ public class CapitalizationTest {
* Test the property 'capitalCamel'
*/
@Test
public void capitalCamelTest() {
void capitalCamelTest() {
// TODO: test capitalCamel
}
@@ -59,7 +57,7 @@ public class CapitalizationTest {
* Test the property 'smallSnake'
*/
@Test
public void smallSnakeTest() {
void smallSnakeTest() {
// TODO: test smallSnake
}
@@ -67,7 +65,7 @@ public class CapitalizationTest {
* Test the property 'capitalSnake'
*/
@Test
public void capitalSnakeTest() {
void capitalSnakeTest() {
// TODO: test capitalSnake
}
@@ -75,7 +73,7 @@ public class CapitalizationTest {
* Test the property 'scAETHFlowPoints'
*/
@Test
public void scAETHFlowPointsTest() {
void scAETHFlowPointsTest() {
// TODO: test scAETHFlowPoints
}
@@ -83,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

@@ -20,22 +20,20 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for CatAllOf
*/
public class CatAllOfTest {
class CatAllOfTest {
private final CatAllOf model = new CatAllOf();
/**
* Model tests for CatAllOf
*/
@Test
public void testCatAllOf() {
void testCatAllOf() {
// TODO: test CatAllOf
}
@@ -43,7 +41,7 @@ public class CatAllOfTest {
* Test the property 'declawed'
*/
@Test
public void declawedTest() {
void declawedTest() {
// TODO: test declawed
}

View File

@@ -25,22 +25,20 @@ import io.swagger.annotations.ApiModelProperty;
import org.openapitools.client.model.Animal;
import org.openapitools.client.model.BigCat;
import org.openapitools.client.model.CatAllOf;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for Cat
*/
public class CatTest {
class CatTest {
private final Cat model = new Cat();
/**
* Model tests for Cat
*/
@Test
public void testCat() {
void testCat() {
// TODO: test Cat
}
@@ -48,7 +46,7 @@ public class CatTest {
* Test the property 'className'
*/
@Test
public void classNameTest() {
void classNameTest() {
// TODO: test className
}
@@ -56,7 +54,7 @@ public class CatTest {
* Test the property 'color'
*/
@Test
public void colorTest() {
void colorTest() {
// TODO: test color
}
@@ -64,7 +62,7 @@ public class CatTest {
* Test the property 'declawed'
*/
@Test
public void declawedTest() {
void declawedTest() {
// TODO: test declawed
}

View File

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

View File

@@ -20,22 +20,20 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for ClassModel
*/
public class ClassModelTest {
class ClassModelTest {
private final ClassModel model = new ClassModel();
/**
* Model tests for ClassModel
*/
@Test
public void testClassModel() {
void testClassModel() {
// TODO: test ClassModel
}
@@ -43,7 +41,7 @@ public class ClassModelTest {
* Test the property 'propertyClass'
*/
@Test
public void propertyClassTest() {
void propertyClassTest() {
// TODO: test propertyClass
}

View File

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

View File

@@ -20,22 +20,20 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for DogAllOf
*/
public class DogAllOfTest {
class DogAllOfTest {
private final DogAllOf model = new DogAllOf();
/**
* Model tests for DogAllOf
*/
@Test
public void testDogAllOf() {
void testDogAllOf() {
// TODO: test DogAllOf
}
@@ -43,7 +41,7 @@ public class DogAllOfTest {
* Test the property 'breed'
*/
@Test
public void breedTest() {
void breedTest() {
// TODO: test breed
}

View File

@@ -24,22 +24,20 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.openapitools.client.model.Animal;
import org.openapitools.client.model.DogAllOf;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for Dog
*/
public class DogTest {
class DogTest {
private final Dog model = new Dog();
/**
* Model tests for Dog
*/
@Test
public void testDog() {
void testDog() {
// TODO: test Dog
}
@@ -47,7 +45,7 @@ public class DogTest {
* Test the property 'className'
*/
@Test
public void classNameTest() {
void classNameTest() {
// TODO: test className
}
@@ -55,7 +53,7 @@ public class DogTest {
* Test the property 'color'
*/
@Test
public void colorTest() {
void colorTest() {
// TODO: test color
}
@@ -63,7 +61,7 @@ public class DogTest {
* Test the property 'breed'
*/
@Test
public void breedTest() {
void breedTest() {
// TODO: test breed
}

View File

@@ -22,22 +22,20 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for EnumArrays
*/
public class EnumArraysTest {
class EnumArraysTest {
private final EnumArrays model = new EnumArrays();
/**
* Model tests for EnumArrays
*/
@Test
public void testEnumArrays() {
void testEnumArrays() {
// TODO: test EnumArrays
}
@@ -45,7 +43,7 @@ public class EnumArraysTest {
* Test the property 'justSymbol'
*/
@Test
public void justSymbolTest() {
void justSymbolTest() {
// TODO: test justSymbol
}
@@ -53,7 +51,7 @@ public class EnumArraysTest {
* Test the property 'arrayEnum'
*/
@Test
public void arrayEnumTest() {
void arrayEnumTest() {
// TODO: test arrayEnum
}

View File

@@ -13,20 +13,18 @@
package org.openapitools.client.model;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
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

@@ -21,22 +21,20 @@ import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.openapitools.client.model.OuterEnum;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for EnumTest
*/
public class EnumTestTest {
class EnumTestTest {
private final EnumTest model = new EnumTest();
/**
* Model tests for EnumTest
*/
@Test
public void testEnumTest() {
void testEnumTest() {
// TODO: test EnumTest
}
@@ -44,7 +42,7 @@ public class EnumTestTest {
* Test the property 'enumString'
*/
@Test
public void enumStringTest() {
void enumStringTest() {
// TODO: test enumString
}
@@ -52,7 +50,7 @@ public class EnumTestTest {
* Test the property 'enumStringRequired'
*/
@Test
public void enumStringRequiredTest() {
void enumStringRequiredTest() {
// TODO: test enumStringRequired
}
@@ -60,7 +58,7 @@ public class EnumTestTest {
* Test the property 'enumInteger'
*/
@Test
public void enumIntegerTest() {
void enumIntegerTest() {
// TODO: test enumInteger
}
@@ -68,7 +66,7 @@ public class EnumTestTest {
* Test the property 'enumNumber'
*/
@Test
public void enumNumberTest() {
void enumNumberTest() {
// TODO: test enumNumber
}
@@ -76,7 +74,7 @@ public class EnumTestTest {
* Test the property 'outerEnum'
*/
@Test
public void outerEnumTest() {
void outerEnumTest() {
// TODO: test outerEnum
}

View File

@@ -22,22 +22,20 @@ import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.util.ArrayList;
import java.util.List;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for FileSchemaTestClass
*/
public class FileSchemaTestClassTest {
class FileSchemaTestClassTest {
private final FileSchemaTestClass model = new FileSchemaTestClass();
/**
* Model tests for FileSchemaTestClass
*/
@Test
public void testFileSchemaTestClass() {
void testFileSchemaTestClass() {
// TODO: test FileSchemaTestClass
}
@@ -45,7 +43,7 @@ public class FileSchemaTestClassTest {
* Test the property 'file'
*/
@Test
public void fileTest() {
void fileTest() {
// TODO: test file
}
@@ -53,7 +51,7 @@ public class FileSchemaTestClassTest {
* Test the property 'files'
*/
@Test
public void filesTest() {
void filesTest() {
// TODO: test files
}

View File

@@ -25,22 +25,20 @@ import java.math.BigDecimal;
import java.util.UUID;
import org.threeten.bp.LocalDate;
import org.threeten.bp.OffsetDateTime;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for FormatTest
*/
public class FormatTestTest {
class FormatTestTest {
private final FormatTest model = new FormatTest();
/**
* Model tests for FormatTest
*/
@Test
public void testFormatTest() {
void testFormatTest() {
// TODO: test FormatTest
}
@@ -48,7 +46,7 @@ public class FormatTestTest {
* Test the property 'integer'
*/
@Test
public void integerTest() {
void integerTest() {
// TODO: test integer
}
@@ -56,7 +54,7 @@ public class FormatTestTest {
* Test the property 'int32'
*/
@Test
public void int32Test() {
void int32Test() {
// TODO: test int32
}
@@ -64,7 +62,7 @@ public class FormatTestTest {
* Test the property 'int64'
*/
@Test
public void int64Test() {
void int64Test() {
// TODO: test int64
}
@@ -72,7 +70,7 @@ public class FormatTestTest {
* Test the property 'number'
*/
@Test
public void numberTest() {
void numberTest() {
// TODO: test number
}
@@ -80,7 +78,7 @@ public class FormatTestTest {
* Test the property '_float'
*/
@Test
public void _floatTest() {
void _floatTest() {
// TODO: test _float
}
@@ -88,7 +86,7 @@ public class FormatTestTest {
* Test the property '_double'
*/
@Test
public void _doubleTest() {
void _doubleTest() {
// TODO: test _double
}
@@ -96,7 +94,7 @@ public class FormatTestTest {
* Test the property 'string'
*/
@Test
public void stringTest() {
void stringTest() {
// TODO: test string
}
@@ -104,7 +102,7 @@ public class FormatTestTest {
* Test the property '_byte'
*/
@Test
public void _byteTest() {
void _byteTest() {
// TODO: test _byte
}
@@ -112,7 +110,7 @@ public class FormatTestTest {
* Test the property 'binary'
*/
@Test
public void binaryTest() {
void binaryTest() {
// TODO: test binary
}
@@ -120,7 +118,7 @@ public class FormatTestTest {
* Test the property 'date'
*/
@Test
public void dateTest() {
void dateTest() {
// TODO: test date
}
@@ -128,7 +126,7 @@ public class FormatTestTest {
* Test the property 'dateTime'
*/
@Test
public void dateTimeTest() {
void dateTimeTest() {
// TODO: test dateTime
}
@@ -136,7 +134,7 @@ public class FormatTestTest {
* Test the property 'uuid'
*/
@Test
public void uuidTest() {
void uuidTest() {
// TODO: test uuid
}
@@ -144,7 +142,7 @@ public class FormatTestTest {
* Test the property 'password'
*/
@Test
public void passwordTest() {
void passwordTest() {
// TODO: test password
}
@@ -152,7 +150,7 @@ public class FormatTestTest {
* Test the property 'bigDecimal'
*/
@Test
public void bigDecimalTest() {
void bigDecimalTest() {
// TODO: test bigDecimal
}

View File

@@ -20,22 +20,20 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for HasOnlyReadOnly
*/
public class HasOnlyReadOnlyTest {
class HasOnlyReadOnlyTest {
private final HasOnlyReadOnly model = new HasOnlyReadOnly();
/**
* Model tests for HasOnlyReadOnly
*/
@Test
public void testHasOnlyReadOnly() {
void testHasOnlyReadOnly() {
// TODO: test HasOnlyReadOnly
}
@@ -43,7 +41,7 @@ public class HasOnlyReadOnlyTest {
* Test the property 'bar'
*/
@Test
public void barTest() {
void barTest() {
// TODO: test bar
}
@@ -51,7 +49,7 @@ public class HasOnlyReadOnlyTest {
* Test the property 'foo'
*/
@Test
public void fooTest() {
void fooTest() {
// TODO: test foo
}

View File

@@ -23,22 +23,20 @@ import io.swagger.annotations.ApiModelProperty;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for MapTest
*/
public class MapTestTest {
class MapTestTest {
private final MapTest model = new MapTest();
/**
* Model tests for MapTest
*/
@Test
public void testMapTest() {
void testMapTest() {
// TODO: test MapTest
}
@@ -46,7 +44,7 @@ public class MapTestTest {
* Test the property 'mapMapOfString'
*/
@Test
public void mapMapOfStringTest() {
void mapMapOfStringTest() {
// TODO: test mapMapOfString
}
@@ -54,7 +52,7 @@ public class MapTestTest {
* Test the property 'mapOfEnumString'
*/
@Test
public void mapOfEnumStringTest() {
void mapOfEnumStringTest() {
// TODO: test mapOfEnumString
}
@@ -62,7 +60,7 @@ public class MapTestTest {
* Test the property 'directMap'
*/
@Test
public void directMapTest() {
void directMapTest() {
// TODO: test directMap
}
@@ -70,7 +68,7 @@ public class MapTestTest {
* Test the property 'indirectMap'
*/
@Test
public void indirectMapTest() {
void indirectMapTest() {
// TODO: test indirectMap
}

View File

@@ -26,22 +26,20 @@ import java.util.Map;
import java.util.UUID;
import org.openapitools.client.model.Animal;
import org.threeten.bp.OffsetDateTime;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for MixedPropertiesAndAdditionalPropertiesClass
*/
public class MixedPropertiesAndAdditionalPropertiesClassTest {
class MixedPropertiesAndAdditionalPropertiesClassTest {
private final MixedPropertiesAndAdditionalPropertiesClass model = new MixedPropertiesAndAdditionalPropertiesClass();
/**
* Model tests for MixedPropertiesAndAdditionalPropertiesClass
*/
@Test
public void testMixedPropertiesAndAdditionalPropertiesClass() {
void testMixedPropertiesAndAdditionalPropertiesClass() {
// TODO: test MixedPropertiesAndAdditionalPropertiesClass
}
@@ -49,7 +47,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'uuid'
*/
@Test
public void uuidTest() {
void uuidTest() {
// TODO: test uuid
}
@@ -57,7 +55,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'dateTime'
*/
@Test
public void dateTimeTest() {
void dateTimeTest() {
// TODO: test dateTime
}
@@ -65,7 +63,7 @@ public class MixedPropertiesAndAdditionalPropertiesClassTest {
* Test the property 'map'
*/
@Test
public void mapTest() {
void mapTest() {
// TODO: test map
}

View File

@@ -20,22 +20,20 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for Model200Response
*/
public class Model200ResponseTest {
class Model200ResponseTest {
private final Model200Response model = new Model200Response();
/**
* Model tests for Model200Response
*/
@Test
public void testModel200Response() {
void testModel200Response() {
// TODO: test Model200Response
}
@@ -43,7 +41,7 @@ public class Model200ResponseTest {
* Test the property 'name'
*/
@Test
public void nameTest() {
void nameTest() {
// TODO: test name
}
@@ -51,7 +49,7 @@ public class Model200ResponseTest {
* Test the property 'propertyClass'
*/
@Test
public void propertyClassTest() {
void propertyClassTest() {
// TODO: test propertyClass
}

View File

@@ -20,22 +20,20 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for ModelApiResponse
*/
public class ModelApiResponseTest {
class ModelApiResponseTest {
private final ModelApiResponse model = new ModelApiResponse();
/**
* Model tests for ModelApiResponse
*/
@Test
public void testModelApiResponse() {
void testModelApiResponse() {
// TODO: test ModelApiResponse
}
@@ -43,7 +41,7 @@ public class ModelApiResponseTest {
* Test the property 'code'
*/
@Test
public void codeTest() {
void codeTest() {
// TODO: test code
}
@@ -51,7 +49,7 @@ public class ModelApiResponseTest {
* Test the property 'type'
*/
@Test
public void typeTest() {
void typeTest() {
// TODO: test type
}
@@ -59,7 +57,7 @@ public class ModelApiResponseTest {
* Test the property 'message'
*/
@Test
public void messageTest() {
void messageTest() {
// TODO: test message
}

View File

@@ -20,22 +20,20 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for ModelReturn
*/
public class ModelReturnTest {
class ModelReturnTest {
private final ModelReturn model = new ModelReturn();
/**
* Model tests for ModelReturn
*/
@Test
public void testModelReturn() {
void testModelReturn() {
// TODO: test ModelReturn
}
@@ -43,7 +41,7 @@ public class ModelReturnTest {
* Test the property '_return'
*/
@Test
public void _returnTest() {
void _returnTest() {
// TODO: test _return
}

View File

@@ -20,22 +20,20 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for Name
*/
public class NameTest {
class NameTest {
private final Name model = new Name();
/**
* Model tests for Name
*/
@Test
public void testName() {
void testName() {
// TODO: test Name
}
@@ -43,7 +41,7 @@ public class NameTest {
* Test the property 'name'
*/
@Test
public void nameTest() {
void nameTest() {
// TODO: test name
}
@@ -51,7 +49,7 @@ public class NameTest {
* Test the property 'snakeCase'
*/
@Test
public void snakeCaseTest() {
void snakeCaseTest() {
// TODO: test snakeCase
}
@@ -59,7 +57,7 @@ public class NameTest {
* Test the property 'property'
*/
@Test
public void propertyTest() {
void propertyTest() {
// TODO: test property
}
@@ -67,7 +65,7 @@ public class NameTest {
* Test the property '_123number'
*/
@Test
public void _123numberTest() {
void _123numberTest() {
// TODO: test _123number
}

View File

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

View File

@@ -21,22 +21,20 @@ import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.threeten.bp.OffsetDateTime;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for Order
*/
public class OrderTest {
class OrderTest {
private final Order model = new Order();
/**
* Model tests for Order
*/
@Test
public void testOrder() {
void testOrder() {
// TODO: test Order
}
@@ -44,7 +42,7 @@ public class OrderTest {
* Test the property 'id'
*/
@Test
public void idTest() {
void idTest() {
// TODO: test id
}
@@ -52,7 +50,7 @@ public class OrderTest {
* Test the property 'petId'
*/
@Test
public void petIdTest() {
void petIdTest() {
// TODO: test petId
}
@@ -60,7 +58,7 @@ public class OrderTest {
* Test the property 'quantity'
*/
@Test
public void quantityTest() {
void quantityTest() {
// TODO: test quantity
}
@@ -68,7 +66,7 @@ public class OrderTest {
* Test the property 'shipDate'
*/
@Test
public void shipDateTest() {
void shipDateTest() {
// TODO: test shipDate
}
@@ -76,7 +74,7 @@ public class OrderTest {
* Test the property 'status'
*/
@Test
public void statusTest() {
void statusTest() {
// TODO: test status
}
@@ -84,7 +82,7 @@ public class OrderTest {
* Test the property 'complete'
*/
@Test
public void completeTest() {
void completeTest() {
// TODO: test complete
}

View File

@@ -21,22 +21,20 @@ import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for OuterComposite
*/
public class OuterCompositeTest {
class OuterCompositeTest {
private final OuterComposite model = new OuterComposite();
/**
* Model tests for OuterComposite
*/
@Test
public void testOuterComposite() {
void testOuterComposite() {
// TODO: test OuterComposite
}
@@ -44,7 +42,7 @@ public class OuterCompositeTest {
* Test the property 'myNumber'
*/
@Test
public void myNumberTest() {
void myNumberTest() {
// TODO: test myNumber
}
@@ -52,7 +50,7 @@ public class OuterCompositeTest {
* Test the property 'myString'
*/
@Test
public void myStringTest() {
void myStringTest() {
// TODO: test myString
}
@@ -60,7 +58,7 @@ public class OuterCompositeTest {
* Test the property 'myBoolean'
*/
@Test
public void myBooleanTest() {
void myBooleanTest() {
// TODO: test myBoolean
}

View File

@@ -13,20 +13,18 @@
package org.openapitools.client.model;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
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

@@ -26,22 +26,20 @@ import java.util.List;
import java.util.Set;
import org.openapitools.client.model.Category;
import org.openapitools.client.model.Tag;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for Pet
*/
public class PetTest {
class PetTest {
private final Pet model = new Pet();
/**
* Model tests for Pet
*/
@Test
public void testPet() {
void testPet() {
// TODO: test Pet
}
@@ -49,7 +47,7 @@ public class PetTest {
* Test the property 'id'
*/
@Test
public void idTest() {
void idTest() {
// TODO: test id
}
@@ -57,7 +55,7 @@ public class PetTest {
* Test the property 'category'
*/
@Test
public void categoryTest() {
void categoryTest() {
// TODO: test category
}
@@ -65,7 +63,7 @@ public class PetTest {
* Test the property 'name'
*/
@Test
public void nameTest() {
void nameTest() {
// TODO: test name
}
@@ -73,7 +71,7 @@ public class PetTest {
* Test the property 'photoUrls'
*/
@Test
public void photoUrlsTest() {
void photoUrlsTest() {
// TODO: test photoUrls
}
@@ -81,7 +79,7 @@ public class PetTest {
* Test the property 'tags'
*/
@Test
public void tagsTest() {
void tagsTest() {
// TODO: test tags
}
@@ -89,7 +87,7 @@ public class PetTest {
* Test the property 'status'
*/
@Test
public void statusTest() {
void statusTest() {
// TODO: test status
}

View File

@@ -20,22 +20,20 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for ReadOnlyFirst
*/
public class ReadOnlyFirstTest {
class ReadOnlyFirstTest {
private final ReadOnlyFirst model = new ReadOnlyFirst();
/**
* Model tests for ReadOnlyFirst
*/
@Test
public void testReadOnlyFirst() {
void testReadOnlyFirst() {
// TODO: test ReadOnlyFirst
}
@@ -43,7 +41,7 @@ public class ReadOnlyFirstTest {
* Test the property 'bar'
*/
@Test
public void barTest() {
void barTest() {
// TODO: test bar
}
@@ -51,7 +49,7 @@ public class ReadOnlyFirstTest {
* Test the property 'baz'
*/
@Test
public void bazTest() {
void bazTest() {
// TODO: test baz
}

View File

@@ -20,22 +20,20 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for SpecialModelName
*/
public class SpecialModelNameTest {
class SpecialModelNameTest {
private final SpecialModelName model = new SpecialModelName();
/**
* Model tests for SpecialModelName
*/
@Test
public void testSpecialModelName() {
void testSpecialModelName() {
// TODO: test SpecialModelName
}
@@ -43,7 +41,7 @@ public class SpecialModelNameTest {
* Test the property '$specialPropertyName'
*/
@Test
public void $specialPropertyNameTest() {
void $specialPropertyNameTest() {
// TODO: test $specialPropertyName
}

View File

@@ -20,22 +20,20 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for Tag
*/
public class TagTest {
class TagTest {
private final Tag model = new Tag();
/**
* Model tests for Tag
*/
@Test
public void testTag() {
void testTag() {
// TODO: test Tag
}
@@ -43,7 +41,7 @@ public class TagTest {
* Test the property 'id'
*/
@Test
public void idTest() {
void idTest() {
// TODO: test id
}
@@ -51,7 +49,7 @@ public class TagTest {
* Test the property 'name'
*/
@Test
public void nameTest() {
void nameTest() {
// TODO: test name
}

View File

@@ -23,22 +23,20 @@ import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for TypeHolderDefault
*/
public class TypeHolderDefaultTest {
class TypeHolderDefaultTest {
private final TypeHolderDefault model = new TypeHolderDefault();
/**
* Model tests for TypeHolderDefault
*/
@Test
public void testTypeHolderDefault() {
void testTypeHolderDefault() {
// TODO: test TypeHolderDefault
}
@@ -46,7 +44,7 @@ public class TypeHolderDefaultTest {
* Test the property 'stringItem'
*/
@Test
public void stringItemTest() {
void stringItemTest() {
// TODO: test stringItem
}
@@ -54,7 +52,7 @@ public class TypeHolderDefaultTest {
* Test the property 'numberItem'
*/
@Test
public void numberItemTest() {
void numberItemTest() {
// TODO: test numberItem
}
@@ -62,7 +60,7 @@ public class TypeHolderDefaultTest {
* Test the property 'integerItem'
*/
@Test
public void integerItemTest() {
void integerItemTest() {
// TODO: test integerItem
}
@@ -70,7 +68,7 @@ public class TypeHolderDefaultTest {
* Test the property 'boolItem'
*/
@Test
public void boolItemTest() {
void boolItemTest() {
// TODO: test boolItem
}
@@ -78,7 +76,7 @@ public class TypeHolderDefaultTest {
* Test the property 'arrayItem'
*/
@Test
public void arrayItemTest() {
void arrayItemTest() {
// TODO: test arrayItem
}

View File

@@ -23,22 +23,20 @@ import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for TypeHolderExample
*/
public class TypeHolderExampleTest {
class TypeHolderExampleTest {
private final TypeHolderExample model = new TypeHolderExample();
/**
* Model tests for TypeHolderExample
*/
@Test
public void testTypeHolderExample() {
void testTypeHolderExample() {
// TODO: test TypeHolderExample
}
@@ -46,7 +44,7 @@ public class TypeHolderExampleTest {
* Test the property 'stringItem'
*/
@Test
public void stringItemTest() {
void stringItemTest() {
// TODO: test stringItem
}
@@ -54,7 +52,7 @@ public class TypeHolderExampleTest {
* Test the property 'numberItem'
*/
@Test
public void numberItemTest() {
void numberItemTest() {
// TODO: test numberItem
}
@@ -62,7 +60,7 @@ public class TypeHolderExampleTest {
* Test the property 'floatItem'
*/
@Test
public void floatItemTest() {
void floatItemTest() {
// TODO: test floatItem
}
@@ -70,7 +68,7 @@ public class TypeHolderExampleTest {
* Test the property 'integerItem'
*/
@Test
public void integerItemTest() {
void integerItemTest() {
// TODO: test integerItem
}
@@ -78,7 +76,7 @@ public class TypeHolderExampleTest {
* Test the property 'boolItem'
*/
@Test
public void boolItemTest() {
void boolItemTest() {
// TODO: test boolItem
}
@@ -86,7 +84,7 @@ public class TypeHolderExampleTest {
* Test the property 'arrayItem'
*/
@Test
public void arrayItemTest() {
void arrayItemTest() {
// TODO: test arrayItem
}

View File

@@ -20,22 +20,20 @@ import com.fasterxml.jackson.annotation.JsonTypeName;
import com.fasterxml.jackson.annotation.JsonValue;
import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for User
*/
public class UserTest {
class UserTest {
private final User model = new User();
/**
* Model tests for User
*/
@Test
public void testUser() {
void testUser() {
// TODO: test User
}
@@ -43,7 +41,7 @@ public class UserTest {
* Test the property 'id'
*/
@Test
public void idTest() {
void idTest() {
// TODO: test id
}
@@ -51,7 +49,7 @@ public class UserTest {
* Test the property 'username'
*/
@Test
public void usernameTest() {
void usernameTest() {
// TODO: test username
}
@@ -59,7 +57,7 @@ public class UserTest {
* Test the property 'firstName'
*/
@Test
public void firstNameTest() {
void firstNameTest() {
// TODO: test firstName
}
@@ -67,7 +65,7 @@ public class UserTest {
* Test the property 'lastName'
*/
@Test
public void lastNameTest() {
void lastNameTest() {
// TODO: test lastName
}
@@ -75,7 +73,7 @@ public class UserTest {
* Test the property 'email'
*/
@Test
public void emailTest() {
void emailTest() {
// TODO: test email
}
@@ -83,7 +81,7 @@ public class UserTest {
* Test the property 'password'
*/
@Test
public void passwordTest() {
void passwordTest() {
// TODO: test password
}
@@ -91,7 +89,7 @@ public class UserTest {
* Test the property 'phone'
*/
@Test
public void phoneTest() {
void phoneTest() {
// TODO: test phone
}
@@ -99,7 +97,7 @@ public class UserTest {
* Test the property 'userStatus'
*/
@Test
public void userStatusTest() {
void userStatusTest() {
// TODO: test userStatus
}

View File

@@ -23,22 +23,20 @@ import io.swagger.annotations.ApiModelProperty;
import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;
import org.junit.jupiter.api.Test;
/**
* Model tests for XmlItem
*/
public class XmlItemTest {
class XmlItemTest {
private final XmlItem model = new XmlItem();
/**
* Model tests for XmlItem
*/
@Test
public void testXmlItem() {
void testXmlItem() {
// TODO: test XmlItem
}
@@ -46,7 +44,7 @@ public class XmlItemTest {
* Test the property 'attributeString'
*/
@Test
public void attributeStringTest() {
void attributeStringTest() {
// TODO: test attributeString
}
@@ -54,7 +52,7 @@ public class XmlItemTest {
* Test the property 'attributeNumber'
*/
@Test
public void attributeNumberTest() {
void attributeNumberTest() {
// TODO: test attributeNumber
}
@@ -62,7 +60,7 @@ public class XmlItemTest {
* Test the property 'attributeInteger'
*/
@Test
public void attributeIntegerTest() {
void attributeIntegerTest() {
// TODO: test attributeInteger
}
@@ -70,7 +68,7 @@ public class XmlItemTest {
* Test the property 'attributeBoolean'
*/
@Test
public void attributeBooleanTest() {
void attributeBooleanTest() {
// TODO: test attributeBoolean
}
@@ -78,7 +76,7 @@ public class XmlItemTest {
* Test the property 'wrappedArray'
*/
@Test
public void wrappedArrayTest() {
void wrappedArrayTest() {
// TODO: test wrappedArray
}
@@ -86,7 +84,7 @@ public class XmlItemTest {
* Test the property 'nameString'
*/
@Test
public void nameStringTest() {
void nameStringTest() {
// TODO: test nameString
}
@@ -94,7 +92,7 @@ public class XmlItemTest {
* Test the property 'nameNumber'
*/
@Test
public void nameNumberTest() {
void nameNumberTest() {
// TODO: test nameNumber
}
@@ -102,7 +100,7 @@ public class XmlItemTest {
* Test the property 'nameInteger'
*/
@Test
public void nameIntegerTest() {
void nameIntegerTest() {
// TODO: test nameInteger
}
@@ -110,7 +108,7 @@ public class XmlItemTest {
* Test the property 'nameBoolean'
*/
@Test
public void nameBooleanTest() {
void nameBooleanTest() {
// TODO: test nameBoolean
}
@@ -118,7 +116,7 @@ public class XmlItemTest {
* Test the property 'nameArray'
*/
@Test
public void nameArrayTest() {
void nameArrayTest() {
// TODO: test nameArray
}
@@ -126,7 +124,7 @@ public class XmlItemTest {
* Test the property 'nameWrappedArray'
*/
@Test
public void nameWrappedArrayTest() {
void nameWrappedArrayTest() {
// TODO: test nameWrappedArray
}
@@ -134,7 +132,7 @@ public class XmlItemTest {
* Test the property 'prefixString'
*/
@Test
public void prefixStringTest() {
void prefixStringTest() {
// TODO: test prefixString
}
@@ -142,7 +140,7 @@ public class XmlItemTest {
* Test the property 'prefixNumber'
*/
@Test
public void prefixNumberTest() {
void prefixNumberTest() {
// TODO: test prefixNumber
}
@@ -150,7 +148,7 @@ public class XmlItemTest {
* Test the property 'prefixInteger'
*/
@Test
public void prefixIntegerTest() {
void prefixIntegerTest() {
// TODO: test prefixInteger
}
@@ -158,7 +156,7 @@ public class XmlItemTest {
* Test the property 'prefixBoolean'
*/
@Test
public void prefixBooleanTest() {
void prefixBooleanTest() {
// TODO: test prefixBoolean
}
@@ -166,7 +164,7 @@ public class XmlItemTest {
* Test the property 'prefixArray'
*/
@Test
public void prefixArrayTest() {
void prefixArrayTest() {
// TODO: test prefixArray
}
@@ -174,7 +172,7 @@ public class XmlItemTest {
* Test the property 'prefixWrappedArray'
*/
@Test
public void prefixWrappedArrayTest() {
void prefixWrappedArrayTest() {
// TODO: test prefixWrappedArray
}
@@ -182,7 +180,7 @@ public class XmlItemTest {
* Test the property 'namespaceString'
*/
@Test
public void namespaceStringTest() {
void namespaceStringTest() {
// TODO: test namespaceString
}
@@ -190,7 +188,7 @@ public class XmlItemTest {
* Test the property 'namespaceNumber'
*/
@Test
public void namespaceNumberTest() {
void namespaceNumberTest() {
// TODO: test namespaceNumber
}
@@ -198,7 +196,7 @@ public class XmlItemTest {
* Test the property 'namespaceInteger'
*/
@Test
public void namespaceIntegerTest() {
void namespaceIntegerTest() {
// TODO: test namespaceInteger
}
@@ -206,7 +204,7 @@ public class XmlItemTest {
* Test the property 'namespaceBoolean'
*/
@Test
public void namespaceBooleanTest() {
void namespaceBooleanTest() {
// TODO: test namespaceBoolean
}
@@ -214,7 +212,7 @@ public class XmlItemTest {
* Test the property 'namespaceArray'
*/
@Test
public void namespaceArrayTest() {
void namespaceArrayTest() {
// TODO: test namespaceArray
}
@@ -222,7 +220,7 @@ public class XmlItemTest {
* Test the property 'namespaceWrappedArray'
*/
@Test
public void namespaceWrappedArrayTest() {
void namespaceWrappedArrayTest() {
// TODO: test namespaceWrappedArray
}
@@ -230,7 +228,7 @@ public class XmlItemTest {
* Test the property 'prefixNsString'
*/
@Test
public void prefixNsStringTest() {
void prefixNsStringTest() {
// TODO: test prefixNsString
}
@@ -238,7 +236,7 @@ public class XmlItemTest {
* Test the property 'prefixNsNumber'
*/
@Test
public void prefixNsNumberTest() {
void prefixNsNumberTest() {
// TODO: test prefixNsNumber
}
@@ -246,7 +244,7 @@ public class XmlItemTest {
* Test the property 'prefixNsInteger'
*/
@Test
public void prefixNsIntegerTest() {
void prefixNsIntegerTest() {
// TODO: test prefixNsInteger
}
@@ -254,7 +252,7 @@ public class XmlItemTest {
* Test the property 'prefixNsBoolean'
*/
@Test
public void prefixNsBooleanTest() {
void prefixNsBooleanTest() {
// TODO: test prefixNsBoolean
}
@@ -262,7 +260,7 @@ public class XmlItemTest {
* Test the property 'prefixNsArray'
*/
@Test
public void prefixNsArrayTest() {
void prefixNsArrayTest() {
// TODO: test prefixNsArray
}
@@ -270,7 +268,7 @@ public class XmlItemTest {
* Test the property 'prefixNsWrappedArray'
*/
@Test
public void prefixNsWrappedArrayTest() {
void prefixNsWrappedArrayTest() {
// TODO: test prefixNsWrappedArray
}