* If the data type of query parameter is "int" or "bool" in OpenAPI Spec, the request url will not be generated correctly. ( PR #6692 )
63 lines
2.3 KiB
C
63 lines
2.3 KiB
C
#ifndef v1_custom_resource_subresource_scale_TEST
|
|
#define v1_custom_resource_subresource_scale_TEST
|
|
|
|
// the following is to include only the main from the first c file
|
|
#ifndef TEST_MAIN
|
|
#define TEST_MAIN
|
|
#define v1_custom_resource_subresource_scale_MAIN
|
|
#endif // TEST_MAIN
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <stdbool.h>
|
|
#include "../external/cJSON.h"
|
|
|
|
#include "../model/v1_custom_resource_subresource_scale.h"
|
|
v1_custom_resource_subresource_scale_t* instantiate_v1_custom_resource_subresource_scale(int include_optional);
|
|
|
|
|
|
|
|
v1_custom_resource_subresource_scale_t* instantiate_v1_custom_resource_subresource_scale(int include_optional) {
|
|
v1_custom_resource_subresource_scale_t* v1_custom_resource_subresource_scale = NULL;
|
|
if (include_optional) {
|
|
v1_custom_resource_subresource_scale = v1_custom_resource_subresource_scale_create(
|
|
"0",
|
|
"0",
|
|
"0"
|
|
);
|
|
} else {
|
|
v1_custom_resource_subresource_scale = v1_custom_resource_subresource_scale_create(
|
|
"0",
|
|
"0",
|
|
"0"
|
|
);
|
|
}
|
|
|
|
return v1_custom_resource_subresource_scale;
|
|
}
|
|
|
|
|
|
#ifdef v1_custom_resource_subresource_scale_MAIN
|
|
|
|
void test_v1_custom_resource_subresource_scale(int include_optional) {
|
|
v1_custom_resource_subresource_scale_t* v1_custom_resource_subresource_scale_1 = instantiate_v1_custom_resource_subresource_scale(include_optional);
|
|
|
|
cJSON* jsonv1_custom_resource_subresource_scale_1 = v1_custom_resource_subresource_scale_convertToJSON(v1_custom_resource_subresource_scale_1);
|
|
printf("v1_custom_resource_subresource_scale :\n%s\n", cJSON_Print(jsonv1_custom_resource_subresource_scale_1));
|
|
v1_custom_resource_subresource_scale_t* v1_custom_resource_subresource_scale_2 = v1_custom_resource_subresource_scale_parseFromJSON(jsonv1_custom_resource_subresource_scale_1);
|
|
cJSON* jsonv1_custom_resource_subresource_scale_2 = v1_custom_resource_subresource_scale_convertToJSON(v1_custom_resource_subresource_scale_2);
|
|
printf("repeating v1_custom_resource_subresource_scale:\n%s\n", cJSON_Print(jsonv1_custom_resource_subresource_scale_2));
|
|
}
|
|
|
|
int main() {
|
|
test_v1_custom_resource_subresource_scale(1);
|
|
test_v1_custom_resource_subresource_scale(0);
|
|
|
|
printf("Hello world \n");
|
|
return 0;
|
|
}
|
|
|
|
#endif // v1_custom_resource_subresource_scale_MAIN
|
|
#endif // v1_custom_resource_subresource_scale_TEST
|