xgboost/tests/cpp/objective/test_objective.cc
AbdealiJK d41aab4f61 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
2016-12-04 11:25:57 -08:00

10 lines
252 B
C++

// 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"));
}