Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / PPI / RateAnalyzer.test.cc
index fbc1d50..b1d3e7c 100644 (file)
@@ -1,6 +1,6 @@
 // $Id$
 //
-// Copyright (C) 2008 
+// Copyright (C) 2008
 // Fraunhofer Institute for Open Communication Systems (FOKUS)
 // Competence Center NETwork research (NET), St. Augustin, GERMANY
 //     Stefan Bund <g0dil@berlios.de>
 
 // Custom includes
 #include "RateAnalyzer.hh"
-#include "PPI.hh"
+#include "CloneSource.hh"
+#include "RateFilter.hh"
+#include "Setup.hh"
 
 #include <senf/Utils/auto_unit_test.hh>
 #include <boost/test/test_tools.hpp>
 #include <boost/test/floating_point_comparison.hpp>
 
 #define prefix_
-///////////////////////////////cc.p////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 
 namespace {
-    
+
     unsigned calls (0u);
     float ppss[] = { 13.333333f, 20.f, 13.333333f, 20.f, 13.333333f, 20.f };
 
@@ -58,7 +60,7 @@ namespace {
         if (calls >= sizeof(ppss) / sizeof(ppss[0]))
             senf::scheduler::terminate();
     }
-    
+
     void collectBPS(float bytesPerSecond)
     {
         bps += bytesPerSecond;
@@ -72,7 +74,7 @@ namespace {
     }
 }
 
-BOOST_AUTO_UNIT_TEST(rateAnalyzer)
+SENF_AUTO_UNIT_TEST(rateAnalyzer)
 {
     char const * enabled (getenv("SENF_TIMING_CRITICAL_TESTS"));
     if (! enabled) {
@@ -91,7 +93,7 @@ BOOST_AUTO_UNIT_TEST(rateAnalyzer)
     senf::ppi::connect(filter, analyzer);
 
     senf::ppi::run();
-    
+
     BOOST_CHECK_EQUAL( calls, 6u );
 
     pps /= calls;
@@ -103,7 +105,7 @@ BOOST_AUTO_UNIT_TEST(rateAnalyzer)
     }
 }
 
-///////////////////////////////cc.e////////////////////////////////////////
+//-/////////////////////////////////////////////////////////////////////////////////////////////////
 #undef prefix_
 
 \f