BD_Integratoren/C++/test/test_LiveAgg.cpp
2021-10-27 22:00:24 +02:00

18 lines
311 B
C++

//
// Created by jholder on 21.10.21.
//
#include <catch2/catch.hpp>
#include "LiveAgg.hpp"
TEST_CASE("LiveAgg") {
auto ag = LiveAgg();
SECTION("Mean of same values") {
ag.feed(1.0);
ag.feed(1.0);
REQUIRE(ag.getMean() == 1.0);
REQUIRE(ag.getNumPoints() == 2);
}
}