1
0
mirror of synced 2024-12-23 05:00:01 +01:00

12 lines
291 B
C++
Raw Normal View History

2019-08-07 05:06:55 +00:00
#define CATCH_CONFIG_MAIN
#include <catch2/catch.hpp>
#include <modern/lib.hpp>
TEST_CASE( "Quick check", "[main]" ) {
std::vector<double> values {1, 2., 3.};
auto [mean, moment] = accumulate_vector(values);
REQUIRE( mean == 2.0 );
REQUIRE( moment == Approx(4.666666) );
}