1
0
pl-libs/tests/main_tests.c
Jonathan Hoffstadt 95454b54f7
All checks were successful
Tests / Ubuntu (push) Successful in 6s
initial commit
2024-08-26 20:35:15 -05:00

26 lines
449 B
C

#include "pl_ds_tests.h"
#include "pl_json_tests.h"
int main()
{
plTestContext* ptTestContext = pl_create_test_context();
// data structure tests
pl_test_register_test(hashmap_test_0, NULL);
// json tests
pl_test_register_test(json_test_0, NULL);
if(!pl_test_run())
{
exit(1);
}
return 0;
}
#define PL_TEST_IMPLEMENTATION
#include "pl_test.h"
#define PL_JSON_IMPLEMENTATION
#include "pl_json.h"