[gtksourceview] test-completion-model: test clear()
- From: SÃbastien Wilmet <swilmet src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gtksourceview] test-completion-model: test clear()
- Date: Fri, 11 Jan 2013 12:39:43 +0000 (UTC)
commit 838d694a3f9b27ed06b277d770838a4298b9803c
Author: SÃbastien Wilmet <swilmet gnome org>
Date: Mon Jan 7 22:36:40 2013 +0100
test-completion-model: test clear()
tests/test-completion-model.c | 43 +++++++++++++++++++++++++++++++++++++---
1 files changed, 39 insertions(+), 4 deletions(-)
---
diff --git a/tests/test-completion-model.c b/tests/test-completion-model.c
index 2158f62..bfde3f8 100644
--- a/tests/test-completion-model.c
+++ b/tests/test-completion-model.c
@@ -378,6 +378,31 @@ test_simple_populate (void)
}
static void
+test_clear (void)
+{
+ GtkSourceCompletionModel *model;
+ GList *all_providers = NULL;
+ GList *all_list_proposals = NULL;
+
+ model = gtk_source_completion_model_new ();
+
+ /* Clear the model when it is already empty */
+ gtk_source_completion_model_clear (model);
+ g_assert (gtk_source_completion_model_is_empty (model, FALSE));
+
+ /* Add some proposals */
+ create_providers (&all_providers, &all_list_proposals);
+ populate_model (model, all_providers, all_list_proposals);
+
+ /* Clear the model when it is not empty */
+ gtk_source_completion_model_clear (model);
+ g_assert (gtk_source_completion_model_is_empty (model, FALSE));
+
+ g_object_unref (model);
+ free_providers (all_providers, all_list_proposals);
+}
+
+static void
test_set_visible_providers (void)
{
GtkSourceCompletionModel *model;
@@ -441,10 +466,20 @@ main (int argc, char **argv)
{
gtk_test_init (&argc, &argv);
- g_test_add_func ("/CompletionModel/is-empty", test_is_empty);
- g_test_add_func ("/CompletionModel/get-visible-providers", test_get_visible_providers);
- g_test_add_func ("/CompletionModel/simple-populate", test_simple_populate);
- g_test_add_func ("/CompletionModel/set-visible-providers", test_set_visible_providers);
+ g_test_add_func ("/CompletionModel/is-empty",
+ test_is_empty);
+
+ g_test_add_func ("/CompletionModel/get-visible-providers",
+ test_get_visible_providers);
+
+ g_test_add_func ("/CompletionModel/simple-populate",
+ test_simple_populate);
+
+ g_test_add_func ("/CompletionModel/clear",
+ test_clear);
+
+ g_test_add_func ("/CompletionModel/set-visible-providers",
+ test_set_visible_providers);
return g_test_run ();
}
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]