LCOV - code coverage report
Current view: top level - src/unittest - test_profiler.cpp (source / functions) Hit Total Coverage
Test: report Lines: 4 27 14.8 %
Date: 2015-07-11 18:23:49 Functions: 4 7 57.1 %

          Line data    Source code
       1             : /*
       2             : Minetest
       3             : Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
       4             : 
       5             : This program is free software; you can redistribute it and/or modify
       6             : it under the terms of the GNU Lesser General Public License as published by
       7             : the Free Software Foundation; either version 2.1 of the License, or
       8             : (at your option) any later version.
       9             : 
      10             : This program is distributed in the hope that it will be useful,
      11             : but WITHOUT ANY WARRANTY; without even the implied warranty of
      12             : MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
      13             : GNU Lesser General Public License for more details.
      14             : 
      15             : You should have received a copy of the GNU Lesser General Public License along
      16             : with this program; if not, write to the Free Software Foundation, Inc.,
      17             : 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
      18             : */
      19             : 
      20             : #include "test.h"
      21             : 
      22             : #include "profiler.h"
      23             : 
      24           1 : class TestProfiler : public TestBase {
      25             : public:
      26           1 :         TestProfiler() { TestManager::registerTestModule(this); }
      27           0 :         const char *getName() { return "TestProfiler"; }
      28             : 
      29             :         void runTests(IGameDef *gamedef);
      30             : 
      31             :         void testProfilerAverage();
      32             : };
      33             : 
      34           1 : static TestProfiler g_test_instance;
      35             : 
      36           0 : void TestProfiler::runTests(IGameDef *gamedef)
      37             : {
      38           0 :         TEST(testProfilerAverage);
      39           0 : }
      40             : 
      41             : ////////////////////////////////////////////////////////////////////////////////
      42             : 
      43           0 : void TestProfiler::testProfilerAverage()
      44             : {
      45           0 :         Profiler p;
      46             : 
      47           0 :         p.avg("Test1", 1.f);
      48           0 :         UASSERT(p.getValue("Test1") == 1.f);
      49             : 
      50           0 :         p.avg("Test1", 2.f);
      51           0 :         UASSERT(p.getValue("Test1") == 1.5f);
      52             : 
      53           0 :         p.avg("Test1", 3.f);
      54           0 :         UASSERT(p.getValue("Test1") == 2.f);
      55             : 
      56           0 :         p.avg("Test1", 486.f);
      57           0 :         UASSERT(p.getValue("Test1") == 123.f);
      58             : 
      59           0 :         p.avg("Test1", 8);
      60           0 :         UASSERT(p.getValue("Test1") == 100.f);
      61             : 
      62           0 :         p.avg("Test1", 700);
      63           0 :         UASSERT(p.getValue("Test1") == 200.f);
      64             : 
      65           0 :         p.avg("Test1", 10000);
      66           0 :         UASSERT(p.getValue("Test1") == 1600.f);
      67             : 
      68           0 :         p.avg("Test2", 123.56);
      69           0 :         p.avg("Test2", 123.58);
      70             : 
      71           0 :         UASSERT(p.getValue("Test2") == 123.57f);
      72           3 : }

Generated by: LCOV version 1.11