9bea12b3e42d7a5051391966b6ce90f6f06ac8ec
[senf.git] / senf / Utils / StatisticAccumulator.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2010
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Thorsten Horstmann <thorsten.horstmann@fokus.fraunhofer.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief StatisticAccumulator non-inline template implementation  */
25
26 // Custom includes
27
28 #include "StatisticAccumulator.hh"
29 #include "Statistics.hh"
30 #include "auto_unit_test.hh"
31 #include <boost/test/test_tools.hpp>
32 #include <math.h>
33 //#include <boost/math/special_functions/fpclassify.hpp>
34
35 #define prefix_
36 ///////////////////////////////ct.p////////////////////////////////////////
37 SENF_AUTO_UNIT_TEST(StatisticAccumulator)
38 {
39     senf::Statistics s;
40
41     senf::StatisticAccumulatorInt sa;
42
43     sa.accumulate( 5);
44     sa.accumulate( 3);
45     sa.accumulate( 4);
46     sa.accumulate( 6);
47     sa.accumulate( 7);
48
49     BOOST_CHECK_EQUAL( sa.max(), 7);
50     BOOST_CHECK_EQUAL( sa.min(), 3);
51     BOOST_CHECK_EQUAL( sa.avg(), 5.0);
52     BOOST_CHECK_EQUAL( sa.last_avg(), 0.0);
53 //    BOOST_CHECK_EQUAL( sa.stddev(), 1.41421354);
54     BOOST_CHECK_EQUAL( sa.count(), 5);
55
56     s(0,sa);
57
58     BOOST_CHECK_EQUAL( sa.max(), 0);
59     BOOST_CHECK_EQUAL( sa.min(), 0);
60 //    BOOST_CHECK( (boost::math::isnan)( sa.avg()));
61     BOOST_CHECK( ::isnan( sa.avg()) != 0);
62     BOOST_CHECK_EQUAL( sa.last_avg(), 5.0);
63     BOOST_CHECK( ::isnan( sa.stddev()));
64     BOOST_CHECK_EQUAL( sa.count(), 0);
65
66
67
68
69 }
70 ///////////////////////////////ct.e////////////////////////////////////////
71 #undef prefix_