Open
Description
Describe the issue linked to the documentation
#22722 and #24862 introduced parameter validation.
These tools should be documented under https://scikit-learn.org/dev/developers/utilities.html#validation-tools.
In addition, a lot of tests for raising errors in case of bad input seems to disappear. Are there common tests for it or is it still recommended to write tests a la
def test_estim_raises():
est = Estim(n_rounds="should be a number")
with pytest.raises(ValueError):
est.fit(X, y)
Suggest a potential alternative/fix
No response