In tests use BOOST_AUTO_UNIT_TEST instead of BOOST_AUTO_TEST_CASE
[metaproxy-moved-to-github.git] / src / test_filter2.cpp
index 14aa299..fb34da0 100644 (file)
@@ -1,4 +1,4 @@
-/* $Id: test_filter2.cpp,v 1.14 2005-10-29 22:23:36 marc Exp $
+/* $Id: test_filter2.cpp,v 1.16 2005-12-02 12:21:07 adam Exp $
    Copyright (c) 2005, Index Data.
 
 %LICENSE%
@@ -27,9 +27,6 @@ public:
        package.data() = m_constant;
        package.move();
     };
-    const std::string type() const {
-        return "FilterConstant";
-    };
     void configure(const xmlNode* ptr = 0);
     int get_constant() const { return m_constant; };
 private:
@@ -118,13 +115,10 @@ public:
        package.data() = package.data() * 2;
        package.move();
     };
-    const std::string type() const {
-        return "FilterConstant";
-    };
 };
 
     
-BOOST_AUTO_TEST_CASE( testfilter2_1 ) 
+BOOST_AUTO_UNIT_TEST( testfilter2_1 ) 
 {
     try {
        FilterConstant fc;
@@ -175,7 +169,7 @@ BOOST_AUTO_TEST_CASE( testfilter2_1 )
 
 }
 
-BOOST_AUTO_TEST_CASE( testfilter2_2 ) 
+BOOST_AUTO_UNIT_TEST( testfilter2_2 ) 
 {
     try {
        FilterConstant fc;