1 /* $Id: test_router_flexml.cpp,v 1.3 2005-10-31 09:40:18 marc Exp $
2 Copyright (c) 2005, Index Data.
12 #include "router_flexml.hpp"
14 #define BOOST_AUTO_TEST_MAIN
15 #include <boost/test/auto_unit_test.hpp>
17 using namespace boost::unit_test;
19 class TFilter: public yp2::filter::Base {
21 void process(yp2::Package & package) const {};
25 BOOST_AUTO_TEST_CASE( test_router_flexml_1 )
30 std::string xmlconf = "<?xml version=\"1.0\"?>"
31 "<yp2 xmlns=\"http://indexdata.dk/yp2/config/1\">"
32 "<start route=\"start\"/>"
34 "<filter id=\"front_default\" type=\"frontend-net\">"
37 "<filter id=\"log_cout\" type=\"log\">"
38 "<logfile>mylog.log</logfile>"
42 "<route id=\"start\">"
43 "<filter refid=\"front_default\"/>"
44 "<filter refid=\"log_cout\"/>"
49 yp2::RouterFleXML rflexml(xmlconf);
54 //BOOST_CHECK_EQUAL(filter.name(), std::string("filter1"));
65 * indent-tabs-mode: nil
66 * c-file-style: "stroustrup"
68 * vim: shiftwidth=4 tabstop=8 expandtab