Basic window creation testing

This commit is contained in:
Paul Breugnot 2025-01-25 10:29:37 +01:00
parent 8e6f89cb2d
commit 0e7a1f5623
4 changed files with 170 additions and 49 deletions

14
test/test_set_up.h Normal file
View file

@ -0,0 +1,14 @@
#ifndef ASWM_TEST_SET_UP
#define ASWM_TEST_SET_UP
#include "unity.h"
#include "X11/Xlib.h"
// Extern variables accessible from any test.
// Defined in test_set_up.c
extern char display_name[5];
extern int aswm_pid;
extern Display* test_display;
extern Window test_root;
#endif