#include "./pke-test-asset-manager.h" #include "./pke-test-audio.h" #include "./pke-test-dummy.h" #include "./pke-test-font.hpp" #include "./pke-test-load-unload.h" #include "./pke-test-serialization.h" #include "./pke-test-static-ui.h" #include "pk.h" #include int main(int argc, char *argv[]) { (void)argc; (void)argv; const unsigned long test_group_count = 6; pk_test_group_get *group_fns[test_group_count] = { pke_test_dummy_get_group, pke_test_static_ui_get_group, pke_test_serialization_get_group, pke_test_asset_manager_get_group, pke_test_load_unload_get_group, pke_test_font_get_group, // pke_test_audio_get_group, }; pk_test_run_test_groups(group_fns, test_group_count); return 0; }