diff options
Diffstat (limited to 'test/automated/displayless/test-nautilus-search-engine-tracker.c')
-rw-r--r-- | test/automated/displayless/test-nautilus-search-engine-tracker.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/automated/displayless/test-nautilus-search-engine-tracker.c b/test/automated/displayless/test-nautilus-search-engine-tracker.c index 0de2d404b..fdbca124f 100644 --- a/test/automated/displayless/test-nautilus-search-engine-tracker.c +++ b/test/automated/displayless/test-nautilus-search-engine-tracker.c @@ -1,5 +1,7 @@ #include "test-utilities.h" +static guint total_hits = 0; + static void hits_added_cb (NautilusSearchEngine *engine, GSList *hits) @@ -8,6 +10,7 @@ hits_added_cb (NautilusSearchEngine *engine, for (gint hit_number = 0; hits != NULL; hits = hits->next, hit_number++) { g_print ("Hit %i: %s\n", hit_number, nautilus_search_hit_get_uri (hits->data)); + total_hits += 1; } } @@ -102,5 +105,8 @@ main (int argc, NAUTILUS_SEARCH_ENGINE_TRACKER_ENGINE); g_main_loop_run (loop); + + g_assert_cmpint (total_hits, ==, 1); + return 0; } |