Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
unit-tests
utilities
number
stabilized
test-change-percent.cpp
Go to the documentation of this file.
1
// License: Apache 2.0. See LICENSE file in root directory.
2
// Copyright(c) 2020 Intel Corporation. All Rights Reserved.
3
4
//#cmake:add-file ../../../../common/utilities/number/stabilized-value.h
5
6
7
#include "../../../test.h"
8
#include <../common/utilities/number/stabilized-value.h>
9
10
using namespace
utilities::number
;
11
12
// Test group description:
13
// * This tests group verifies stabilized_value class.
14
//
15
// Current test description:
16
// * Verify that on the same values different 'get' calls with different stabilization percent
17
// give the expected value
18
TEST_CASE
(
"change stabilization percent"
,
"[stabilized value]"
)
19
{
20
stabilized_value< float >
stab_value( 5 );
21
CHECK_NOTHROW
( stab_value.
add
( 1.0f ) );
22
CHECK_NOTHROW
( stab_value.
add
( 1.0f ) );
23
CHECK_NOTHROW
( stab_value.
add
( 1.0f ) );
24
CHECK_NOTHROW
( stab_value.
add
( 1.0f ) );
25
CHECK_NOTHROW
( stab_value.
add
( 1.0f ) );
26
27
CHECK_NOTHROW
( stab_value.
add
( 2.0f ) );
28
CHECK_NOTHROW
( stab_value.
add
( 2.0f ) );
29
CHECK_NOTHROW
( stab_value.
add
( 2.0f ) );
30
CHECK_NOTHROW
( stab_value.
add
( 2.0f ) );
31
32
CHECK
( 1.0
f
== stab_value.
get
( 1.0f ) );
33
CHECK
( 1.0
f
== stab_value.
get
( 0.9f ) );
34
CHECK
( 2.0
f
== stab_value.
get
( 0.8f ) );
35
}
utilities::number::stabilized_value::add
void add(T val)
Definition:
stabilized-value.h:45
utilities::number
Definition:
stabilized-value.h:11
f
GLdouble f
Definition:
glad/glad/glad.h:1518
utilities::number::stabilized_value::get
T get(float stabilization_percent=0.75f) const
Definition:
stabilized-value.h:63
CHECK_NOTHROW
#define CHECK_NOTHROW(...)
Definition:
catch.hpp:17421
TEST_CASE
TEST_CASE("change stabilization percent","[stabilized value]")
Definition:
test-change-percent.cpp:18
utilities::number::stabilized_value< float >
CHECK
#define CHECK(condition)
Definition:
easylogging++.h:4483
librealsense2
Author(s): Sergey Dorodnicov
, Doron Hirshberg
, Mark Horn
, Reagan Lopez
, Itay Carpis
autogenerated on Mon May 3 2021 02:50:11