This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
stellar-stellar/test/lpi_plus/test_result_validator.h
2024-11-27 14:36:24 +08:00

22 lines
457 B
C

#pragma once
#ifdef __cplusplus
extern "C"
{
#endif
#include "cjson/cJSON.h"
struct test_result_validator;
struct test_result_validator *test_result_validator_new(const char *expect_json_path);
void test_result_validator_free(struct test_result_validator *para);
int test_result_validator_compare(struct test_result_validator *para);
int test_result_validator_add_actual(struct test_result_validator *param, cJSON *json);
#ifdef __cplusplus
}
#endif