summaryrefslogtreecommitdiff
path: root/tests/testarraylist.vala
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testarraylist.vala')
-rw-r--r--tests/testarraylist.vala19
1 files changed, 1 insertions, 18 deletions
diff --git a/tests/testarraylist.vala b/tests/testarraylist.vala
index 9537f79..381740e 100644
--- a/tests/testarraylist.vala
+++ b/tests/testarraylist.vala
@@ -25,12 +25,11 @@
using Gee;
-public class ArrayListTests : ListTests {
+public class ArrayListTests : BidirListTests {
public ArrayListTests () {
base ("ArrayList");
add_test ("[ArrayList] selected functions", test_selected_functions);
- add_test ("[ArrayList] GObject properties", test_gobject_properties);
add_test ("[ArrayList] small sort (insertion)", test_small_sort);
add_test ("[ArrayList] big sort (timsort)", test_big_sort);
add_test ("[ArrayList] typed to_array calls", test_typed_to_array);
@@ -51,22 +50,6 @@ public class ArrayListTests : ListTests {
// Check the collection exists
assert (test_list != null);
-
- // Check the selected equal function
- assert (test_list.equal_func == str_equal);
- }
-
- public new void test_gobject_properties () {
- var test_list = test_collection as ArrayList<string>;
-
- // Check the list exists
- assert (test_list != null);
- Value value;
-
- value = Value (typeof (EqualFunc));
- test_list.get_property ("equal-func", ref value);
- assert (value.get_pointer () == (void*) test_list.equal_func);
- value.unset ();
}
private void test_small_sort () {