summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDave Davenport <qball@gmpclient.org>2016-10-13 18:29:32 +0200
committerDave Davenport <qball@gmpclient.org>2016-10-13 18:29:32 +0200
commitcc496c38ee31cab226bbede60d3790afcf108b3d (patch)
treeab9e2b2e8affca7e488e556681c52cd45094e9cc /test
parenteb5f169af0f7819b2520b996c2335c1e0af9c088 (diff)
check coverall behaviour
Diffstat (limited to 'test')
-rw-r--r--test/widget-test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/widget-test.c b/test/widget-test.c
index d3ee1dc5..16c51c78 100644
--- a/test/widget-test.c
+++ b/test/widget-test.c
@@ -129,7 +129,7 @@ int main ( G_GNUC_UNUSED int argc, G_GNUC_UNUSED char **argv )
widget_move ( NULL, 0, 0 );
TASSERT ( widget_get_height ( NULL ) == 0);
TASSERT ( widget_get_width ( NULL ) == 0);
- widget_enabled ( NULL );
+ TASSERT ( widget_enabled ( NULL ) == 0);
widget_disable ( NULL );
widget_enable ( NULL );
widget_draw ( NULL, NULL );
@@ -137,7 +137,7 @@ int main ( G_GNUC_UNUSED int argc, G_GNUC_UNUSED char **argv )
widget_resize ( NULL, 0, 0);
widget_update ( NULL );
widget_queue_redraw ( NULL );
- widget_need_redraw ( NULL );
+ TASSERT (widget_need_redraw ( NULL ) == FALSE);
widget_clicked ( NULL, NULL );
widget_set_clicked_handler ( NULL, NULL, NULL );