Add pagination to detail result

Add version of libraries info to header
This commit is contained in:
2024-04-04 00:14:21 +02:00
parent cf83d1f8f4
commit 3bc51cb7b0
5 changed files with 80 additions and 44 deletions

View File

@@ -18,8 +18,8 @@ TEST_CASE("Test Platform version", "[Platform]")
}
TEST_CASE("Test Folding library version", "[Folding]")
{
auto kfold = folding::KFold(5, 100);
REQUIRE(kfold.version() == "1.0.1");
std::string version = folding::KFold(5, 100).version();
REQUIRE(version == "1.0.1");
}
TEST_CASE("Test BayesNet version", "[BayesNet]")
{