about summary refs log tree commit diff stats
path: root/tests/test_form.h
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2015-05-28 18:50:55 +0100
committerJames Booth <boothj5@gmail.com>2015-05-28 18:50:55 +0100
commit6d6bb6458873196f904257cd00a6f2221262783d (patch)
tree2b751a3e8cc54dc487a95703898fc9a96e438dbf /tests/test_form.h
parent0c99dc7ad60843aa7719a9c75aa701e3c86720da (diff)
downloadprofani-tty-6d6bb6458873196f904257cd00a6f2221262783d.tar.gz
Moved tests -> unittests
Diffstat (limited to 'tests/test_form.h')
-rw-r--r--tests/test_form.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/tests/test_form.h b/tests/test_form.h
deleted file mode 100644
index 65911d0a..00000000
--- a/tests/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);