17059e82ae262b79216178cfc7f48c2a969a127a
[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 <boost/math/special_functions/fpclassify.hpp>
33
34 #define prefix_
35 ///////////////////////////////ct.p////////////////////////////////////////
36 SENF_AUTO_UNIT_TEST(StatisticAccumulator)
37 {
38     senf::Statistics s;
39
40     senf::StatisticAccumulatorInt sa;
41
42     sa.accumulate( 5);
43     sa.accumulate( 3);
44     sa.accumulate( 4);
45     sa.accumulate( 6);
46     sa.accumulate( 7);
47
48     BOOST_CHECK_EQUAL( sa.max(), 7);
49     BOOST_CHECK_EQUAL( sa.min(), 3);
50     BOOST_CHECK_EQUAL( sa.avg(), 5.0);
51     BOOST_CHECK_EQUAL( sa.last_avg(), 0.0);
52 //    BOOST_CHECK_EQUAL( sa.stddev(), 1.41421354);
53     BOOST_CHECK_EQUAL( sa.count(), 5);
54
55     s(0,sa);
56
57     BOOST_CHECK_EQUAL( sa.max(), 0);
58     BOOST_CHECK_EQUAL( sa.min(), 0);
59     BOOST_CHECK( (boost::math::isnan)( sa.avg()));
60     BOOST_CHECK_EQUAL( sa.last_avg(), 5.0);
61     BOOST_CHECK( (boost::math::isnan)( sa.stddev()));
62     BOOST_CHECK_EQUAL( sa.count(), 0);
63
64
65
66
67 }
68 ///////////////////////////////ct.e////////////////////////////////////////
69 #undef prefix_