tests/cpp: Add tests for regression_obj.cc

Test the objective functions in regression_obj.cc

tests/cpp: Add tests for objective.cc and RegLossObj
This commit is contained in:
AbdealiJK
2016-12-03 14:06:51 +05:30
committed by Tianqi Chen
parent fd99d39372
commit d41aab4f61
4 changed files with 112 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
// Copyright by Contributors
#include <xgboost/objective.h>
#include "../helpers.h"
TEST(Objective, UnknownFunction) {
EXPECT_ANY_THROW(xgboost::ObjFunction::Create("unknown_name"));
EXPECT_NO_THROW(xgboost::ObjFunction::Create("reg:linear"));
}