* Add management functions for global configuration: XGBSetGlobalConfig(), XGBGetGlobalConfig(). * Add Python interface: set_config(), get_config(), and config_context(). * Add unit tests for Python * Add R interface: xgb.set.config(), xgb.get.config() * Add unit tests for R Co-authored-by: Jiaming Yuan <jm.yuan@outlook.com>
12 lines
361 B
R
12 lines
361 B
R
context('Test global configuration')
|
|
|
|
test_that('Global configuration works with verbosity', {
|
|
old_verbosity <- xgb.get.config()$verbosity
|
|
for (v in c(0, 1, 2, 3)) {
|
|
xgb.set.config(verbosity = v)
|
|
expect_equal(xgb.get.config()$verbosity, v)
|
|
}
|
|
xgb.set.config(verbosity = old_verbosity)
|
|
expect_equal(xgb.get.config()$verbosity, old_verbosity)
|
|
})
|