aboutsummaryrefslogtreecommitdiff
path: root/tests/unit_tests/stringset.h
diff options
context:
space:
mode:
Diffstat (limited to 'tests/unit_tests/stringset.h')
-rw-r--r--tests/unit_tests/stringset.h56
1 files changed, 56 insertions, 0 deletions
diff --git a/tests/unit_tests/stringset.h b/tests/unit_tests/stringset.h
new file mode 100644
index 00000000..7fcd1a26
--- /dev/null
+++ b/tests/unit_tests/stringset.h
@@ -0,0 +1,56 @@
+/* main.vala
+ *
+ * Copyright (C) 2008 Rob Taylor
+ *
+ * This library is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU Lesser General Public License as published by
+ * the Free Software Foundation, either version 2.1 of the License, or
+ * (at your option) any later version.
+ *
+ * This library is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU Lesser General Public License for more details.
+ *
+ * You should have received a copy of the GNU Lesser General Public License
+ * along with this library. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Author:
+ * Rob Taylor <rob.taylor@codethink.co.uk>
+ */
+
+#ifndef __TESTS_UNIT_TESTS_STRINGSET_H__
+#define __TESTS_UNIT_TESTS_STRINGSET_H__
+
+#include <glib.h>
+#include <glib-object.h>
+#include <stdlib.h>
+#include <string.h>
+
+G_BEGIN_DECLS
+
+
+
+void test_stringset_new (void);
+void test_stringset_new_sized (void);
+void test_stringset_new_from_array (void);
+void test_stringset_add (void);
+void test_stringset_remove (void);
+void test_stringset_clear (void);
+void test_stringset_size (void);
+void test_stringset_intersection (void);
+void test_stringset_to_array (void);
+void test_stringset_iterate (void);
+void test_stringset_symmetric_difference (void);
+void test_stringset_difference (void);
+void test_stringset_union (void);
+void test_stringset_is_equal (void);
+void test_stringset_is_subset_of (void);
+void test_stringset_is_disjoint (void);
+void test_stringset_debug (void);
+void _main (char** args, int args_length1);
+
+
+G_END_DECLS
+
+#endif