Automated openapi generation from release-1.30
Signed-off-by: Kubernetes Prow Robot <k8s.ci.robot@gmail.com>
This commit is contained in:
60
kubernetes/unit-test/test_v1_variable.c
Normal file
60
kubernetes/unit-test/test_v1_variable.c
Normal file
@@ -0,0 +1,60 @@
|
||||
#ifndef v1_variable_TEST
|
||||
#define v1_variable_TEST
|
||||
|
||||
// the following is to include only the main from the first c file
|
||||
#ifndef TEST_MAIN
|
||||
#define TEST_MAIN
|
||||
#define v1_variable_MAIN
|
||||
#endif // TEST_MAIN
|
||||
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
#include <stdio.h>
|
||||
#include <stdbool.h>
|
||||
#include "../external/cJSON.h"
|
||||
|
||||
#include "../model/v1_variable.h"
|
||||
v1_variable_t* instantiate_v1_variable(int include_optional);
|
||||
|
||||
|
||||
|
||||
v1_variable_t* instantiate_v1_variable(int include_optional) {
|
||||
v1_variable_t* v1_variable = NULL;
|
||||
if (include_optional) {
|
||||
v1_variable = v1_variable_create(
|
||||
"0",
|
||||
"0"
|
||||
);
|
||||
} else {
|
||||
v1_variable = v1_variable_create(
|
||||
"0",
|
||||
"0"
|
||||
);
|
||||
}
|
||||
|
||||
return v1_variable;
|
||||
}
|
||||
|
||||
|
||||
#ifdef v1_variable_MAIN
|
||||
|
||||
void test_v1_variable(int include_optional) {
|
||||
v1_variable_t* v1_variable_1 = instantiate_v1_variable(include_optional);
|
||||
|
||||
cJSON* jsonv1_variable_1 = v1_variable_convertToJSON(v1_variable_1);
|
||||
printf("v1_variable :\n%s\n", cJSON_Print(jsonv1_variable_1));
|
||||
v1_variable_t* v1_variable_2 = v1_variable_parseFromJSON(jsonv1_variable_1);
|
||||
cJSON* jsonv1_variable_2 = v1_variable_convertToJSON(v1_variable_2);
|
||||
printf("repeating v1_variable:\n%s\n", cJSON_Print(jsonv1_variable_2));
|
||||
}
|
||||
|
||||
int main() {
|
||||
test_v1_variable(1);
|
||||
test_v1_variable(0);
|
||||
|
||||
printf("Hello world \n");
|
||||
return 0;
|
||||
}
|
||||
|
||||
#endif // v1_variable_MAIN
|
||||
#endif // v1_variable_TEST
|
||||
Reference in New Issue
Block a user