diff options
-rw-r--r-- | test/gui/group.c | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/test/gui/group.c b/test/gui/group.c new file mode 100644 index 0000000..e3d25f3 --- /dev/null +++ b/test/gui/group.c | |||
@@ -0,0 +1,18 @@ | |||
1 | #include <gui/group.h> | ||
2 | #include <gui/window.h> | ||
3 | #include "MLV/MLV_all.h" | ||
4 | |||
5 | |||
6 | static void test_group() { | ||
7 | Window window; | ||
8 | window_init(&window, 1000, 512, "Coucou"); | ||
9 | window_create(&window); | ||
10 | window.group_buttons->component.print_method(window.group_pictureframe); | ||
11 | MLV_wait_seconds(5); | ||
12 | window_free(&window); | ||
13 | } | ||
14 | |||
15 | int main() { | ||
16 | test_group(); | ||
17 | return 0; | ||
18 | } \ No newline at end of file | ||