Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
G
gtk
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Dorota Czaplejewicz
gtk
Commits
04a58d87
Commit
04a58d87
authored
Sep 06, 2009
by
Paolo Borelli
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simple expander unit test
parent
f77042aa
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
71 additions
and
0 deletions
+71
-0
gtk/tests/Makefile.am
gtk/tests/Makefile.am
+4
-0
gtk/tests/expander.c
gtk/tests/expander.c
+67
-0
No files found.
gtk/tests/Makefile.am
View file @
04a58d87
...
...
@@ -86,4 +86,8 @@ TEST_PROGS += filtermodel
filtermodel_SOURCES
=
filtermodel.c
filtermodel_LDADD
=
$(progs_ldadd)
TEST_PROGS
+=
expander
expander_SOURCES
=
expander.c
expander_LDADD
=
$(progs_ldadd)
-include
$(top_srcdir)/git.mk
gtk/tests/expander.c
0 → 100644
View file @
04a58d87
/* GTK - The GIMP Toolkit
* Copyright (C) 1995-1997 Peter Mattis, Spencer Kimball and Josh MacDonald
*
* This library is free software; you can redistribute it and/or
* modify it under the terms of the GNU Lesser General Public
* License as published by the Free Software Foundation; either
* version 2 of the License, or (at your option) any later version.
*
* This library is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* Lesser General Public License for more details.
*
* You should have received a copy of the GNU Lesser General Public
* License along with this library; if not, write to the
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
* Boston, MA 02111-1307, USA.
*/
/*
* Modified by the GTK+ Team and others 1997-2001. See the AUTHORS
* file for a list of people on the GTK+ Team. See the ChangeLog
* files for a list of changes. These files are distributed with
* GTK+ at ftp://ftp.gtk.org/pub/gtk/.
*/
#include <gtk/gtk.h>
static
void
test_click
(
void
)
{
GtkWidget
*
window
=
gtk_test_create_simple_window
(
"Test Window"
,
"Test click on expander"
);
GtkWidget
*
expander
=
gtk_expander_new
(
"Test Expander"
);
GtkWidget
*
label
=
gtk_label_new
(
"Test Label"
);
gboolean
expanded
;
gboolean
simsuccess
;
gtk_container_add
(
GTK_CONTAINER
(
expander
),
label
);
gtk_container_add
(
GTK_CONTAINER
(
GTK_BIN
(
window
)
->
child
),
expander
);
gtk_widget_show
(
expander
);
gtk_widget_show
(
label
);
gtk_widget_show_now
(
window
);
/* check initial expander state */
expanded
=
gtk_expander_get_expanded
(
GTK_EXPANDER
(
expander
));
g_assert
(
!
expanded
);
/* check expanding */
simsuccess
=
gtk_test_widget_click
(
expander
,
1
,
0
);
g_assert
(
simsuccess
==
TRUE
);
while
(
gtk_events_pending
())
/* let expander timeout/idle handlers update */
gtk_main_iteration
();
expanded
=
gtk_expander_get_expanded
(
GTK_EXPANDER
(
expander
));
g_assert
(
expanded
);
/* check collapsing */
simsuccess
=
gtk_test_widget_click
(
expander
,
1
,
0
);
g_assert
(
simsuccess
==
TRUE
);
while
(
gtk_events_pending
())
/* let expander timeout/idle handlers update */
gtk_main_iteration
();
expanded
=
gtk_expander_get_expanded
(
GTK_EXPANDER
(
expander
));
g_assert
(
!
expanded
);
}
int
main
(
int
argc
,
char
*
argv
[])
{
gtk_test_init
(
&
argc
,
&
argv
);
g_test_add_func
(
"/expander/click"
,
test_click
);
return
g_test_run
();
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment