1616import org .openapitools .client .ApiException ;
1717import java .math .BigDecimal ;
1818import org .openapitools .client .model .Client ;
19+ import org .openapitools .client .model .FakeRefParameterPetIdParameter ;
1920import java .io .File ;
2021import org .openapitools .client .model .FileSchemaTestClass ;
22+ import org .openapitools .client .model .FreeFormObjectTestClass ;
2123import org .openapitools .client .model .HealthCheckResult ;
2224import java .time .LocalDate ;
25+ import org .openapitools .client .model .ModelApiResponse ;
2326import java .time .OffsetDateTime ;
2427import org .openapitools .client .model .OuterComposite ;
2528import org .openapitools .client .model .OuterEnum ;
@@ -41,6 +44,17 @@ public class FakeApiTest {
4144
4245 private final FakeApi api = new FakeApi ();
4346
47+ /**
48+ * Get a free form object or Json string
49+ *
50+ * @throws ApiException if the Api call fails
51+ */
52+ @ Test
53+ public void fakeGetFreeFormObjectGetTest () throws ApiException {
54+ FreeFormObjectTestClass response = api .fakeGetFreeFormObjectGet ();
55+ // TODO: test validations
56+ }
57+
4458 /**
4559 * Test serialization of outer boolean types
4660 *
@@ -89,6 +103,36 @@ public void fakeOuterStringSerializeTest() throws ApiException {
89103 // TODO: test validations
90104 }
91105
106+ /**
107+ * fake reference parameter
108+ *
109+ *
110+ *
111+ * @throws ApiException if the Api call fails
112+ */
113+ @ Test
114+ public void fakeRefParameterTest () throws ApiException {
115+ FakeRefParameterPetIdParameter petId = null ;
116+ api .fakeRefParameter (petId );
117+ // TODO: test validations
118+ }
119+
120+ /**
121+ * fake reference parameter
122+ *
123+ *
124+ *
125+ * @throws ApiException if the Api call fails
126+ */
127+ @ Test
128+ public void fakeUploadRefRequestBodiesTest () throws ApiException {
129+ Long petId = null ;
130+ String additionalMetadata = null ;
131+ File _file = null ;
132+ ModelApiResponse response = api .fakeUploadRefRequestBodies (petId , additionalMetadata , _file );
133+ // TODO: test validations
134+ }
135+
92136 /**
93137 * Array of Enums
94138 *
@@ -221,8 +265,7 @@ public void testEnumParametersTest() throws ApiException {
221265 List <String > enumFormStringArray = null ;
222266 String enumFormString = null ;
223267 Integer enumFormInteger = null ;
224- Double enumFormDouble = null ;
225- api .testEnumParameters (enumHeaderStringArray , enumHeaderString , enumQueryStringArray , enumQueryString , enumQueryInteger , enumQueryDouble , enumFormStringArray , enumFormString , enumFormInteger , enumFormDouble );
268+ api .testEnumParameters (enumHeaderStringArray , enumHeaderString , enumQueryStringArray , enumQueryString , enumQueryInteger , enumQueryDouble , enumFormStringArray , enumFormString , enumFormInteger );
226269 // TODO: test validations
227270 }
228271
0 commit comments