🎉 init(cmake): init modern cmake template
This commit is contained in:
11
tests/testlib.cpp
Normal file
11
tests/testlib.cpp
Normal file
@@ -0,0 +1,11 @@
|
||||
#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) );
|
||||
}
|
Reference in New Issue
Block a user