1
0
pl-libs/tests/main_tests.c
Jonathan Hoffstadt 95b7130b7c
Some checks failed
Tests / Ubuntu (push) Failing after 8s
initial commit
2024-08-26 20:31:33 -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"