69 lines
2.1 KiB
C
69 lines
2.1 KiB
C
#ifndef v1beta2_exact_device_request_TEST
|
|
#define v1beta2_exact_device_request_TEST
|
|
|
|
// the following is to include only the main from the first c file
|
|
#ifndef TEST_MAIN
|
|
#define TEST_MAIN
|
|
#define v1beta2_exact_device_request_MAIN
|
|
#endif // TEST_MAIN
|
|
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <stdio.h>
|
|
#include <stdbool.h>
|
|
#include "../external/cJSON.h"
|
|
|
|
#include "../model/v1beta2_exact_device_request.h"
|
|
v1beta2_exact_device_request_t* instantiate_v1beta2_exact_device_request(int include_optional);
|
|
|
|
|
|
|
|
v1beta2_exact_device_request_t* instantiate_v1beta2_exact_device_request(int include_optional) {
|
|
v1beta2_exact_device_request_t* v1beta2_exact_device_request = NULL;
|
|
if (include_optional) {
|
|
v1beta2_exact_device_request = v1beta2_exact_device_request_create(
|
|
1,
|
|
"0",
|
|
56,
|
|
"0",
|
|
list_createList(),
|
|
list_createList()
|
|
);
|
|
} else {
|
|
v1beta2_exact_device_request = v1beta2_exact_device_request_create(
|
|
1,
|
|
"0",
|
|
56,
|
|
"0",
|
|
list_createList(),
|
|
list_createList()
|
|
);
|
|
}
|
|
|
|
return v1beta2_exact_device_request;
|
|
}
|
|
|
|
|
|
#ifdef v1beta2_exact_device_request_MAIN
|
|
|
|
void test_v1beta2_exact_device_request(int include_optional) {
|
|
v1beta2_exact_device_request_t* v1beta2_exact_device_request_1 = instantiate_v1beta2_exact_device_request(include_optional);
|
|
|
|
cJSON* jsonv1beta2_exact_device_request_1 = v1beta2_exact_device_request_convertToJSON(v1beta2_exact_device_request_1);
|
|
printf("v1beta2_exact_device_request :\n%s\n", cJSON_Print(jsonv1beta2_exact_device_request_1));
|
|
v1beta2_exact_device_request_t* v1beta2_exact_device_request_2 = v1beta2_exact_device_request_parseFromJSON(jsonv1beta2_exact_device_request_1);
|
|
cJSON* jsonv1beta2_exact_device_request_2 = v1beta2_exact_device_request_convertToJSON(v1beta2_exact_device_request_2);
|
|
printf("repeating v1beta2_exact_device_request:\n%s\n", cJSON_Print(jsonv1beta2_exact_device_request_2));
|
|
}
|
|
|
|
int main() {
|
|
test_v1beta2_exact_device_request(1);
|
|
test_v1beta2_exact_device_request(0);
|
|
|
|
printf("Hello world \n");
|
|
return 0;
|
|
}
|
|
|
|
#endif // v1beta2_exact_device_request_MAIN
|
|
#endif // v1beta2_exact_device_request_TEST
|