Files
c/kubernetes/unit-test/test_v1_taint.c
Kubernetes Prow Robot cf0538fd4d Automated openapi generation from release-1.24
Signed-off-by: Kubernetes Prow Robot <k8s.ci.robot@gmail.com>
2022-06-05 18:16:17 +00:00

65 lines
1.3 KiB
C

#ifndef v1_taint_TEST
#define v1_taint_TEST
// the following is to include only the main from the first c file
#ifndef TEST_MAIN
#define TEST_MAIN
#define v1_taint_MAIN
#endif // TEST_MAIN
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <stdbool.h>
#include "../external/cJSON.h"
#include "../model/v1_taint.h"
v1_taint_t* instantiate_v1_taint(int include_optional);
v1_taint_t* instantiate_v1_taint(int include_optional) {
v1_taint_t* v1_taint = NULL;
if (include_optional) {
v1_taint = v1_taint_create(
"0",
"0",
"2013-10-20T19:20:30+01:00",
"0"
);
} else {
v1_taint = v1_taint_create(
"0",
"0",
"2013-10-20T19:20:30+01:00",
"0"
);
}
return v1_taint;
}
#ifdef v1_taint_MAIN
void test_v1_taint(int include_optional) {
v1_taint_t* v1_taint_1 = instantiate_v1_taint(include_optional);
cJSON* jsonv1_taint_1 = v1_taint_convertToJSON(v1_taint_1);
printf("v1_taint :\n%s\n", cJSON_Print(jsonv1_taint_1));
v1_taint_t* v1_taint_2 = v1_taint_parseFromJSON(jsonv1_taint_1);
cJSON* jsonv1_taint_2 = v1_taint_convertToJSON(v1_taint_2);
printf("repeating v1_taint:\n%s\n", cJSON_Print(jsonv1_taint_2));
}
int main() {
test_v1_taint(1);
test_v1_taint(0);
printf("Hello world \n");
return 0;
}
#endif // v1_taint_MAIN
#endif // v1_taint_TEST