automerge/automerge-c/test/main.c
Jason Kankiewicz 14bd8fbe97 Port the WASM API's basic unit tests to C.
Weave the original TypeScript code into the C ports of the WASM API's
sync tests.
Fix misnomers in the WASM API's basic and sync unit tests.
Fix misspellings in the WASM API's basic and sync unit tests.
2022-08-06 16:18:59 -07:00

27 lines
480 B
C

#include <stdarg.h>
#include <stddef.h>
#include <setjmp.h>
#include <stdint.h>
/* third-party */
#include <cmocka.h>
extern int run_actor_id_tests(void);
extern int run_doc_tests(void);
extern int run_list_tests(void);
extern int run_map_tests(void);
extern int run_ported_wasm_suite(void);
int main(void) {
return (
run_actor_id_tests() +
run_doc_tests() +
run_list_tests() +
run_map_tests() +
run_ported_wasm_suite()
);
}