Files
c/kubernetes/unit-test/test_v1alpha1_storage_version_condition.c

69 lines
2.3 KiB
C
Raw Normal View History

2021-09-14 21:52:06 +08:00
#ifndef v1alpha1_storage_version_condition_TEST
#define v1alpha1_storage_version_condition_TEST
// the following is to include only the main from the first c file
#ifndef TEST_MAIN
#define TEST_MAIN
#define v1alpha1_storage_version_condition_MAIN
#endif // TEST_MAIN
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <stdbool.h>
#include "../external/cJSON.h"
#include "../model/v1alpha1_storage_version_condition.h"
v1alpha1_storage_version_condition_t* instantiate_v1alpha1_storage_version_condition(int include_optional);
v1alpha1_storage_version_condition_t* instantiate_v1alpha1_storage_version_condition(int include_optional) {
v1alpha1_storage_version_condition_t* v1alpha1_storage_version_condition = NULL;
if (include_optional) {
v1alpha1_storage_version_condition = v1alpha1_storage_version_condition_create(
"2013-10-20T19:20:30+01:00",
"0",
56,
"0",
"0",
"0"
);
} else {
v1alpha1_storage_version_condition = v1alpha1_storage_version_condition_create(
"2013-10-20T19:20:30+01:00",
"0",
56,
"0",
"0",
"0"
);
}
return v1alpha1_storage_version_condition;
}
#ifdef v1alpha1_storage_version_condition_MAIN
void test_v1alpha1_storage_version_condition(int include_optional) {
v1alpha1_storage_version_condition_t* v1alpha1_storage_version_condition_1 = instantiate_v1alpha1_storage_version_condition(include_optional);
cJSON* jsonv1alpha1_storage_version_condition_1 = v1alpha1_storage_version_condition_convertToJSON(v1alpha1_storage_version_condition_1);
printf("v1alpha1_storage_version_condition :\n%s\n", cJSON_Print(jsonv1alpha1_storage_version_condition_1));
v1alpha1_storage_version_condition_t* v1alpha1_storage_version_condition_2 = v1alpha1_storage_version_condition_parseFromJSON(jsonv1alpha1_storage_version_condition_1);
cJSON* jsonv1alpha1_storage_version_condition_2 = v1alpha1_storage_version_condition_convertToJSON(v1alpha1_storage_version_condition_2);
printf("repeating v1alpha1_storage_version_condition:\n%s\n", cJSON_Print(jsonv1alpha1_storage_version_condition_2));
}
int main() {
test_v1alpha1_storage_version_condition(1);
test_v1alpha1_storage_version_condition(0);
printf("Hello world \n");
return 0;
}
#endif // v1alpha1_storage_version_condition_MAIN
#endif // v1alpha1_storage_version_condition_TEST