// Copyright by Contributors #include #include "helpers.h" #include "xgboost/learner.h" namespace xgboost { TEST(learner, Test) { typedef std::pair arg; auto args = {arg("tree_method", "exact")}; auto mat = {CreateDMatrix(10, 10, 0)}; auto learner = std::unique_ptr(Learner::Create(mat)); learner->Configure(args); } } // namespace xgboost