X-Git-Url: http://sru.miketaylor.org.uk/?a=blobdiff_plain;f=src%2Ftest_filter2.cpp;h=fb34da012cdae9eb000ab8ecf05c499c0afa091c;hb=77dee8966dd1304a0fb8540c3fc68d02dc6ce84a;hp=c1d34b2902a408608af37c19f6ab7fecc959b9ea;hpb=c3805961da509f3e6dc69d5134bd6512be4a8be8;p=metaproxy-moved-to-github.git diff --git a/src/test_filter2.cpp b/src/test_filter2.cpp index c1d34b2..fb34da0 100644 --- a/src/test_filter2.cpp +++ b/src/test_filter2.cpp @@ -1,4 +1,4 @@ -/* $Id: test_filter2.cpp,v 1.11 2005-10-24 10:16:33 adam Exp $ +/* $Id: test_filter2.cpp,v 1.16 2005-12-02 12:21:07 adam Exp $ Copyright (c) 2005, Index Data. %LICENSE% @@ -9,7 +9,7 @@ #include "config.hpp" #include "filter.hpp" -#include "router.hpp" +#include "router_chain.hpp" #include "package.hpp" #include @@ -118,21 +118,19 @@ public: }; -BOOST_AUTO_TEST_CASE( testfilter2_1 ) +BOOST_AUTO_UNIT_TEST( testfilter2_1 ) { try { FilterConstant fc; - fc.name() = "FilterConstant"; FilterDouble fd; - fd.name() = "FilterDouble"; { yp2::RouterChain router1; // test filter set/get/exception - router1.rule(fc); + router1.append(fc); - router1.rule(fd); + router1.append(fd); yp2::Session session; yp2::Origin origin; @@ -147,8 +145,8 @@ BOOST_AUTO_TEST_CASE( testfilter2_1 ) { yp2::RouterChain router2; - router2.rule(fd); - router2.rule(fc); + router2.append(fd); + router2.append(fc); yp2::Session session; yp2::Origin origin; @@ -171,7 +169,7 @@ BOOST_AUTO_TEST_CASE( testfilter2_1 ) } -BOOST_AUTO_TEST_CASE( testfilter2_2 ) +BOOST_AUTO_UNIT_TEST( testfilter2_2 ) { try { FilterConstant fc;