about summary refs log tree commit diff stats
path: root/unittests/test_form.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-06-12 23:53:30 +0100
committerJames Booth <boothj5@gmail.com>2015-06-12 23:53:30 +0100
commit68ed20f10d2fae67b052674a42ed98c2059aa16f (patch)
treedf8d1e7989282cc2e15dda3cd378b3b2895e9892 /unittests/test_form.h
parentc182f3ecd6be5df9b9bc7757930e47b555ddd251 (diff)
downloadprofani-tty-68ed20f10d2fae67b052674a42ed98c2059aa16f.tar.gz
Moved all tests to tests folder
Diffstat (limited to 'unittests/test_form.h')
-rw-r--r--unittests/test_form.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/unittests/test_form.h b/unittests/test_form.h
deleted file mode 100644
index 65911d0a..00000000
--- a/unittests/test_form.h
+++ /dev/null
@@ -1,21 +0,0 @@
-void get_form_type_field_returns_null_no_fields(void **state);
-void get_form_type_field_returns_null_when_not_present(void **state);
-void get_form_type_field_returns_value_when_present(void **state);
-void get_field_type_returns_unknown_when_no_fields(void **state);
-void get_field_type_returns_correct_type(void **state);
-void set_value_adds_when_none(void **state);
-void set_value_updates_when_one(void **state);
-void add_unique_value_adds_when_none(void **state);
-void add_unique_value_does_nothing_when_exists(void **state);
-void add_unique_value_adds_when_doesnt_exist(void **state);
-void add_value_adds_when_none(void **state);
-void add_value_adds_when_some(void **state);
-void add_value_adds_when_exists(void **state);
-void remove_value_does_nothing_when_none(void **state);
-void remove_value_does_nothing_when_doesnt_exist(void **state);
-void remove_value_removes_when_one(void **state);
-void remove_value_removes_when_many(void **state);
-void remove_text_multi_value_does_nothing_when_none(void **state);
-void remove_text_multi_value_does_nothing_when_doesnt_exist(void **state);
-void remove_text_multi_value_removes_when_one(void **state);
-void remove_text_multi_value_removes_when_many(void **state);