Remove ComparableTests as they have been integrated in functions tests
authorMaciej Piechotka <uzytkownik2@gmail.com>
Sat, 21 Aug 2010 19:41:32 +0000 (21:41 +0200)
committerMaciej Piechotka <uzytkownik2@gmail.com>
Sat, 21 Aug 2010 19:41:32 +0000 (21:41 +0200)
tests/Makefile.am
tests/testcomparable.vala [deleted file]
tests/testmain.vala

index 4e63a0d..d6c1bcb 100644 (file)
@@ -8,7 +8,6 @@ tests_SOURCES = \
        testarraylist.vala \
        testcase.vala \
        testcollection.vala \
-       testcomparable.vala \
        testdeque.vala \
        testfunctions.vala \
        testhashmap.vala \
diff --git a/tests/testcomparable.vala b/tests/testcomparable.vala
deleted file mode 100644 (file)
index dd5454f..0000000
+++ /dev/null
@@ -1,54 +0,0 @@
-/* testcomparable.vala
- *
- * Copyright (C) 2009  Didier Villevalois
- *
- * 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, write to the Free Software
- * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301  USA
- *
- * Author:
- *     Didier 'Ptitjes' Villevalois <ptitjes@free.fr>
- */
-
-using Gee;
-
-public class ComparableTests : Gee.TestCase {
-
-       public ComparableTests () {
-               base ("Comparable");
-               add_test ("[Comparable] selected functions", test_selected_functions);
-       }
-
-       private class TestComparable : Object, Comparable<TestComparable> {
-               public int _a;
-
-               public TestComparable (int a) {
-                       _a = a;
-               }
-
-               public int compare_to (TestComparable object) {
-                       return _a - object._a;
-               }
-       }
-
-       public void test_selected_functions () {
-               TestComparable o1 = new TestComparable (10);
-               TestComparable o2 = new TestComparable (20);
-
-               CompareDataFunc<TestComparable> compare = Functions.get_compare_func_for (typeof (TestComparable));
-               assert (compare (o1, o2) < 0);
-
-               o1._a = 42;
-               assert (compare (o1, o2) > 0);
-       }
-}
index 953c6ce..bf47806 100644 (file)
@@ -25,7 +25,6 @@ void main (string[] args) {
        Test.init (ref args);
 
        TestSuite.get_root ().add_suite (new ArrayListTests ().get_suite ());
-       TestSuite.get_root ().add_suite (new ComparableTests ().get_suite ());
        TestSuite.get_root ().add_suite (new FunctionsTests ().get_suite ());
        TestSuite.get_root ().add_suite (new HashMapTests ().get_suite ());
        TestSuite.get_root ().add_suite (new HashMultiMapTests ().get_suite ());