Code
This commit is contained in:
18
tests/module_test.c
Normal file
18
tests/module_test.c
Normal file
@@ -0,0 +1,18 @@
|
||||
#include <stddef.h>
|
||||
|
||||
#include "ahfail/module.h"
|
||||
|
||||
int main(void) {
|
||||
if (module_name[0] == '\0') {
|
||||
return 1;
|
||||
}
|
||||
|
||||
on_activation(NULL, 42);
|
||||
on_window_create(NULL, NULL);
|
||||
on_focus_change(NULL, NULL, NULL);
|
||||
on_idle_show(NULL);
|
||||
on_idle_hide(NULL);
|
||||
on_window_destroy(NULL, NULL);
|
||||
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user